12345678910111213141516 |
- import java.nio.file.Paths
- apply from: "../Script/config.gradle"
- ext {
- codePath = Paths.get("$rootDir", "$rootDirName", "$iconLoaderPath")
- }
- apply from: "$scriptPath/frameworks_module.gradle"
- android {
- namespace 'com.android.launcher3.icons'
- }
- dependencies {
- implementation "androidx.core:core:$ANDROID_X_VERSION"
- implementation "androidx.annotation:annotation:$ANDROID_X_VERSION_BASE"
- }
|