build.gradle 406 B

12345678910111213141516
  1. import java.nio.file.Paths
  2. apply from: "../Script/config.gradle"
  3. ext {
  4. codePath = Paths.get("$rootDir", "$rootDirName", "$iconLoaderPath")
  5. }
  6. apply from: "$scriptPath/frameworks_module.gradle"
  7. android {
  8. namespace 'com.android.launcher3.icons'
  9. }
  10. dependencies {
  11. implementation "androidx.core:core:$ANDROID_X_VERSION"
  12. implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
  13. }