summaryrefslogtreecommitdiffstats
path: root/android/xscreensaver/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'android/xscreensaver/build.gradle')
-rw-r--r--android/xscreensaver/build.gradle8
1 files changed, 6 insertions, 2 deletions
diff --git a/android/xscreensaver/build.gradle b/android/xscreensaver/build.gradle
index f0ff9a3..038e613 100644
--- a/android/xscreensaver/build.gradle
+++ b/android/xscreensaver/build.gradle
@@ -1,8 +1,8 @@
apply plugin: 'android'
dependencies {
- compile fileTree(include: '*.jar', dir: 'libs')
- compile "com.android.support:support-v4:27.1.1"
+ implementation fileTree(include: '*.jar', dir: 'libs')
+ implementation "com.android.support:support-v4:27.1.1"
}
android {
@@ -96,6 +96,10 @@ android {
defaultConfig {
+ // Previous applicationId was "org.jwz.xscreensaver" but I had
+ // to change it because I managed to lose the signing key...
+ // Note that the Java class tree is still "org.jwz.xscreensaver".
+ applicationId "org.jwz.android.xscreensaver"
minSdkVersion 15
targetSdkVersion 27
}