build.gradle 426 B

1234567891011121314151617181920212223
  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 files('../app/libs/apiEngine v3.0.0.jar')
  19. }