build.gradle 857 B

1234567891011121314151617181920212223242526272829303132333435
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdkVersion 23
  6. targetSdkVersion 29
  7. versionCode 2
  8. versionName "1.2"
  9. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. implementation 'androidx.appcompat:appcompat:1.1.0'
  21. // testImplementation 'junit:junit:4.12'
  22. // androidTestImplementation 'com.android.support.test:runner:1.0.2'
  23. // androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  24. api 'org.osmdroid:osmdroid-android:6.1.8'
  25. }