Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

build.gradle 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.2"
  5. defaultConfig {
  6. applicationId "aicare.net.cn.sdk.ailinksdkdemoandroid"
  7. minSdkVersion 19
  8. targetSdkVersion 29
  9. versionCode 2
  10. versionName "1.3.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility 1.8
  21. targetCompatibility 1.8
  22. }
  23. }
  24. dependencies {
  25. implementation fileTree(dir: 'libs', include: ['*.jar'])
  26. implementation 'androidx.appcompat:appcompat:1.1.0'
  27. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  28. testImplementation 'junit:junit:4.12'
  29. implementation 'com.github.elinkthings:AILinkSDKRepositoryAndroid:1.4.5'
  30. implementation 'com.github.elinkthings:AILinkSDKParsingLibraryAndroid:1.3.0'
  31. }