build.gradle 505 B

12345678910111213141516171819202122
  1. apply from: configPath
  2. apply from: "$scriptPath/android_library.gradle"
  3. android {
  4. namespace 'com.android.launcher3.icons'
  5. sourceSets {
  6. main {
  7. res.srcDirs = ["$launcherCode/iconloaderlib/res"]
  8. java.srcDir "$launcherCode/iconloaderlib/src"
  9. }
  10. }
  11. compileOptions {
  12. sourceCompatibility JavaVersion.VERSION_1_8
  13. targetCompatibility JavaVersion.VERSION_1_8
  14. }
  15. }
  16. dependencies {
  17. implementation "androidx.annotation:annotation:1.0.0"
  18. }