build.gradle 482 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.2"
  5. defaultConfig {
  6. minSdkVersion 15
  7. versionCode 1
  8. versionName "1.0"
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. }
  14. }
  15. }
  16. dependencies {
  17. implementation fileTree(dir: 'libs', include: ['*.jar'])
  18. compileOnly 'com.android.support:support-v4:26.0.0'
  19. compileOnly files('../app/libs/apiEngine v3.0.0.jar')
  20. }