Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.jakewharton.butterknife'
  3. android {
  4. compileSdkVersion 29
  5. buildToolsVersion "29.0.2"
  6. defaultConfig {
  7. applicationId "aicare.net.cn.sdk.pabulumsdkrepositoryandroid"
  8. minSdkVersion 19
  9. targetSdkVersion 29
  10. versionCode 1
  11. versionName "1.2.6"
  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. }
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation 'androidx.appcompat:appcompat:1.1.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  29. testImplementation 'junit:junit:4.12'
  30. androidTestImplementation 'androidx.test:runner:1.2.0'
  31. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  32. implementation project(path: ':pabulumlibrary')
  33. implementation 'com.jakewharton:butterknife:10.2.0'
  34. annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.0'
  35. }