build.gradle 973 B

12345678910111213141516171819202122232425262728293031323334
  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. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. // api 'io.agora.rtc:full-sdk:2.9.4'
  20. api 'io.agora.rtc:agora-rtc-sdk:1.0.0'
  21. testImplementation 'junit:junit:4.12'
  22. androidTestImplementation 'androidx.test.ext:junit:1.1.0'
  23. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  24. // implementation files('libs/agora-rtc-sdk.jar')
  25. // androidTestImplementation 'com.android.support.test:runner:1.0.2'
  26. // androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  27. }