Skip to content

Commit

Permalink
deps and gradle version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Palatis committed May 26, 2023
1 parent 03b423e commit df11cdc
Show file tree
Hide file tree
Showing 10 changed files with 272 additions and 227 deletions.
16 changes: 9 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
dataBinding {
enabled true
}

compileSdkVersion 33
buildToolsVersion "30.0.2"

defaultConfig {
applicationId "tw.idv.palatis.xappdebug"
Expand All @@ -31,8 +31,8 @@ android {
versionNameSuffix "-dbg"
}
release {
// signingConfig signingConfigs.release
// aaptOptions.cruncherEnabled = true
signingConfig signingConfigs.release
aaptOptions.cruncherEnabled = true
shrinkResources true
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
Expand All @@ -43,6 +43,8 @@ android {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

namespace 'tw.idv.palatis.xappdebug'
}

android.applicationVariants.all { variant ->
Expand Down Expand Up @@ -84,14 +86,14 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.3.0-rc01'
implementation 'androidx.preference:preference:1.1.1'
implementation "androidx.constraintlayout:constraintlayout:2.1.0-beta01"
implementation "androidx.navigation:navigation-fragment:2.3.5"
implementation 'androidx.navigation:navigation-ui:2.3.5'
implementation "androidx.navigation:navigation-fragment:2.5.3"
implementation 'androidx.navigation:navigation-ui:2.5.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'

compileOnly 'de.robv.android.xposed:api:82'
compileOnly 'de.robv.android.xposed:api:82:sources'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="tw.idv.palatis.xappdebug">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'dev.rikka.tools.refine:gradle-plugin:3.0.3'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
20 changes: 8 additions & 12 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
## For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
#
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx1536m
# Default value: -Xmx1024m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
#
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
#Thu May 25 02:35:40 CST 2023
android.enableJetifier=true

android.useAndroidX=true
org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M"
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 2 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Tue Sep 14 08:09:02 CST 2021
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit df11cdc

Please sign in to comment.