Skip to content

Commit acdaf6b

Browse files
committed
Build updates
1 parent 607a6d4 commit acdaf6b

File tree

8 files changed

+18
-23
lines changed

8 files changed

+18
-23
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
jcenter()
55
}
66
dependencies {
7-
classpath 'com.android.tools.build:gradle:3.2.1'
7+
classpath 'com.android.tools.build:gradle:4.1.3'
88
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
99
}
1010
}

gradle.properties

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
1-
# Project-wide Gradle settings.
2-
3-
# IDE (e.g. Android Studio) users:
4-
# Gradle settings configured through the IDE *will override*
5-
# any settings specified in this file.
6-
7-
# For more details on how to configure your build environment visit
1+
## For more details on how to configure your build environment visit
82
# http://www.gradle.org/docs/current/userguide/build_environment.html
9-
3+
#
104
# Specifies the JVM arguments used for the daemon process.
115
# The setting is particularly useful for tweaking memory settings.
12-
# Default value: -Xmx10248m -XX:MaxPermSize=256m
6+
# Default value: -Xmx1024m -XX:MaxPermSize=256m
137
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
14-
8+
#
159
# When configured, Gradle will run in incubating parallel mode.
1610
# This option should only be used with decoupled projects. More details, visit
1711
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18-
# org.gradle.parallel=true
12+
# org.gradle.parallel=true
13+
#Sat Feb 05 12:08:52 CET 2022
14+
#android.enableJetifier=true
15+
android.useAndroidX=true
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Nov 09 13:15:43 CET 2018
1+
#Sat Feb 05 12:08:34 CET 2022
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip

librootjava/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33

44
android {
5-
compileSdkVersion 26
6-
buildToolsVersion '28.0.3'
5+
compileSdkVersion 30
6+
buildToolsVersion '30.0.3'
77
defaultConfig {
88
minSdkVersion 21 /* was 14 pre-Binder/AIDL */
99
targetSdkVersion 26

librootjava/src/main/java/eu/chainfire/librootjava/Logger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
@SuppressWarnings({"unused", "WeakerAccess"})
2424
public class Logger {
2525
private static String getDefaultLogTag(){
26-
String tag = BuildConfig.APPLICATION_ID;
26+
String tag = BuildConfig.LIBRARY_PACKAGE_NAME;
2727
int p;
2828
while ((p = tag.indexOf('.')) >= 0) {
2929
tag = tag.substring(p + 1);

librootjava_example/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 26
5-
buildToolsVersion '28.0.3'
5+
buildToolsVersion '30.0.3'
66

77
defaultConfig {
88
applicationId "eu.chainfire.librootjava_example"
@@ -15,7 +15,6 @@ android {
1515
buildTypes {
1616
release {
1717
minifyEnabled true
18-
useProguard true
1918
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2019
}
2120
}

librootjavadaemon/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33

44
android {
5-
compileSdkVersion 26
6-
buildToolsVersion '28.0.3'
5+
compileSdkVersion 30
6+
buildToolsVersion '30.0.3'
77
defaultConfig {
88
minSdkVersion 21
99
targetSdkVersion 26

librootjavadaemon_example/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 26
5-
buildToolsVersion '28.0.3'
5+
buildToolsVersion '30.0.3'
66

77
defaultConfig {
88
applicationId "eu.chainfire.librootjavadaemon_example"
@@ -15,7 +15,6 @@ android {
1515
buildTypes {
1616
release {
1717
minifyEnabled true
18-
useProguard true
1918
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2019
}
2120
}

0 commit comments

Comments
 (0)