build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4. android {
  5. compileSdkVersion 26
  6. defaultConfig {
  7. applicationId "com.funcheer.channel.sdk"
  8. minSdkVersion 15
  9. targetSdkVersion 26
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. signingConfigs {
  15. // release {
  16. // storeFile file("./fqgamesdkkeystore.jks")
  17. // storePassword '201868'
  18. // keyPassword '201868'
  19. // keyAlias 'fqgamesdkkeystore.jks'
  20. // v2SigningEnabled false
  21. // }
  22. // debug{
  23. // storeFile file("./fqgamesdkkeystore.jks")
  24. // storePassword '201868'
  25. // keyPassword '201868'
  26. // keyAlias 'fqgamesdkkeystore.jks'
  27. // v2SigningEnabled false
  28. // }
  29. }
  30. buildTypes {
  31. release {
  32. minifyEnabled false
  33. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  34. }
  35. }
  36. }
  37. dependencies {
  38. implementation fileTree(dir: 'libs', include: ['*.jar'])
  39. api project(':fq_plugin_api')
  40. }