Gradle update

This commit is contained in:
nuclearfog 2023-01-22 13:45:29 +01:00
parent 8c42c0f72d
commit dff81125db
No known key found for this signature in database
GPG Key ID: 03488A185C476379
4 changed files with 10 additions and 14 deletions

View File

@ -7,6 +7,7 @@ plugins {
android { android {
compileSdkVersion 33 compileSdkVersion 33
buildToolsVersion '33.0.0' buildToolsVersion '33.0.0'
namespace 'org.nuclearfog.twidda'
defaultConfig { defaultConfig {
applicationId 'org.nuclearfog.twidda' applicationId 'org.nuclearfog.twidda'
@ -32,16 +33,12 @@ android {
} }
packagingOptions { packagingOptions {
exclude '/META-INF/CHANGES' jniLibs {
exclude '/META-INF/DEPENDENCIES' excludes += ['/META-INF/androidx.*', '/META-INF/kotlin*', '/META-INF/com.*', '/META-INF/services/**', '/META-INF/com/**', '/kotlin/**', '/Debug*']
exclude '/META-INF/README.md' }
exclude '/META-INF/androidx.*' resources {
exclude '/META-INF/kotlin*' excludes += ['/META-INF/CHANGES', '/META-INF/DEPENDENCIES', '/META-INF/README.md', '/META-INF/androidx.*', '/META-INF/kotlin*', '/META-INF/com.*', '/META-INF/services/**', '/META-INF/com/**', '/kotlin/**', '/Debug*']
exclude '/META-INF/com.*' }
exclude '/META-INF/services/**'
exclude '/META-INF/com/**'
exclude '/kotlin/**'
exclude '/Debug*'
} }
paranoid { paranoid {

View File

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
package="org.nuclearfog.twidda"
tools:ignore="LockedOrientationActivity"> tools:ignore="LockedOrientationActivity">
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />

View File

@ -9,7 +9,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.3.1' classpath 'com.android.tools.build:gradle:7.4.0'
classpath 'io.michaelrocks:paranoid-gradle-plugin:0.3.7' classpath 'io.michaelrocks:paranoid-gradle-plugin:0.3.7'
classpath 'gradle.plugin.ru.cleverpumpkin.proguard-dictionaries-generator:plugin:1.0.8' classpath 'gradle.plugin.ru.cleverpumpkin.proguard-dictionaries-generator:plugin:1.0.8'
} }

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists