Android App zur Berechnung der Visiereinstellung eines Recurvebogens.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 32
  6. defaultConfig {
  7. applicationId "ch.spherIC.recurvebowsight"
  8. minSdk 28
  9. targetSdk 32
  10. versionCode 1
  11. versionName "2.0.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. buildFeatures {
  25. viewBinding true
  26. }
  27. dataBinding {
  28. enabled = true
  29. }
  30. }
  31. dependencies {
  32. implementation 'androidx.appcompat:appcompat:1.5.0'
  33. implementation 'androidx.cardview:cardview:1.0.0'
  34. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  35. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
  36. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
  37. implementation 'androidx.navigation:navigation-fragment:2.5.1'
  38. implementation 'androidx.navigation:navigation-ui:2.5.1'
  39. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  40. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  41. implementation 'androidx.core:core-splashscreen:1.0.0'
  42. implementation 'com.google.android.material:material:1.6.1'
  43. implementation 'com.google.android.flexbox:flexbox:3.0.0'
  44. implementation files('libs\\achartengine-1.1.0.jar')
  45. testImplementation 'junit:junit:4.13.2'
  46. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  47. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  48. }