build.gradle 1001 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. apply plugin: 'com.android.library'
  2. //apply plugin: 'com.github.dcendents.android-maven'
  3. //group='com.github.codbking'
  4. android {
  5. compileSdkVersion 28
  6. //buildToolsVersion "25.0.0"
  7. defaultConfig {
  8. minSdkVersion 19
  9. targetSdkVersion 28
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. greendao {
  20. }
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
  26. exclude group: 'com.android.support', module: 'support-annotations'
  27. })
  28. implementation 'com.android.support:appcompat-v7:28.0.0'
  29. testImplementation 'junit:junit:4.12'
  30. }
  31. //apply from: 'nexus-push.gradle'