数字人
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

41 lignes
1.0 KiB

  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion '30.0.3'
  5. defaultConfig {
  6. minSdkVersion 16
  7. targetSdkVersion 30
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. //repositories {
  20. // flatDir {
  21. // dirs 'libs'//this way we can find the .aar file in libs folder
  22. // }
  23. //}
  24. dependencies {
  25. implementation fileTree(dir: 'libs', excludes: ['framework.jar'], include: ['*.jar', '*.aar'])
  26. implementation 'androidx.appcompat:appcompat:1.3.1'
  27. // implementation 'com.google.android.exoplayer:exoplayer-core:2.6.0'
  28. testImplementation 'junit:junit:4.13.2'
  29. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  30. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  31. }