You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.3 KiB

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 28
  4. defaultConfig {
  5. minSdkVersion 18
  6. targetSdkVersion 28
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. debuggable false
  14. minifyEnabled true
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. debug {
  18. debuggable true
  19. minifyEnabled false
  20. }
  21. stag {
  22. debuggable true
  23. minifyEnabled false
  24. }
  25. kftc{
  26. debuggable false
  27. minifyEnabled true
  28. }
  29. dev{
  30. debuggable true
  31. minifyEnabled false
  32. }
  33. }
  34. }
  35. dependencies {
  36. implementation fileTree(dir: 'libs', include: ['*.jar'])
  37. implementation 'com.android.support:appcompat-v7:28.0.0'
  38. testImplementation 'junit:junit:4.12'
  39. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  40. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  41. api files('src/main/libs/mtk_v4.6.0.37.jar')
  42. implementation files('src/main/libs/RSLicenseSDK.jar')
  43. }