Update Gradle Plugin 3.3.2 -> 8.1.1

AGP 8.0
Builds and runs successfully

#1

Co-authored-by: SVolf <a.zhiganov@mintmail.ru>
This commit is contained in:
Artem Zhiganov 2023-09-23 16:46:25 +07:00 committed by GitHub
parent 1a1d48286f
commit d683be0812
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 28 additions and 23 deletions

View file

@ -126,8 +126,14 @@ android {
}
}
}
buildFeatures {
aidl true
}
namespace 'net.pierrox.lightning_launcher_extreme'
}
dependencies {
compile project(':core')
implementation project(':core')
implementation project(':plugin-api')
implementation 'net.pierrox.android:lsvg:1.0'
}

View file

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.pierrox.lightning_launcher_extreme"
android:sharedUserId="net.pierrox.lightning_launcher" >
android:sharedUserId="net.pierrox.lightning_launcher" >
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
<uses-permission android:name="android.permission.SET_WALLPAPER"/>

View file

@ -321,7 +321,7 @@ public class AppDrawerX extends Dashboard implements EditTextIme.OnEditTextImeLi
saveState();
}
@SuppressWarnings("deprecation")
@SuppressWarnings("Deprecation")
@Override
protected Dialog onCreateDialog(int id) {
AlertDialog.Builder builder;

View file

@ -10,7 +10,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.android.tools.build:gradle:8.1.1'
}
}

View file

@ -6,8 +6,6 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
buildConfigField "boolean", "IS_BETA", "false"
ndk {
@ -31,11 +29,12 @@ android {
path 'src/main/jni/CMakeLists.txt'
}
}
namespace 'net.pierrox.lightning_launcher'
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('libs/dx.jar')
compile 'net.pierrox.android:lsvg:1.0'
compile project(':plugin-api')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation files('libs/dx.jar')
implementation 'net.pierrox.android:lsvg:1.0'
implementation project(':plugin-api')
}

View file

@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.pierrox.lightning_launcher">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.CALL_PHONE"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>

View file

@ -17,6 +17,9 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
android.nonTransitiveRClass=false
org.gradle.daemon=true
#org.gradle.parallel=true
#android.useDeprecatedNdk=true

View file

@ -1,6 +1,6 @@
#Tue Dec 12 04:46:31 CET 2017
#Sat Sep 16 18:41:27 KRAT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

View file

@ -7,9 +7,8 @@ android {
defaultConfig {
minSdkVersion 8
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
namespace 'net.pierrox.lightning_launcher.plugin'
}

View file

@ -1 +1 @@
<manifest package="net.pierrox.lightning_launcher.plugin"/>
<manifest />

View file

@ -47,9 +47,9 @@ android {
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.google.android.support:wearable:1.2.0'
provided 'com.google.android.wearable:wearable:1.0.0'
compile 'com.google.android.gms:play-services-wearable:6.5.87'
compile project(':core')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.android.support:wearable:1.2.0'
implementation 'com.google.android.wearable:wearable:1.0.0'
implementation 'com.google.android.gms:play-services-wearable:6.5.87'
implementation project(':core')
}