Skip to content

Commit da02155

Browse files
committed
- Updated targetSdkVersion to 30 (Android 11)
1 parent 5a0d18f commit da02155

File tree

5 files changed

+19
-11
lines changed

5 files changed

+19
-11
lines changed

JobLogTimer.iml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<module external.linked.project.id="JobLogTimer" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" type="JAVA_MODULE" version="4">
2+
<module external.linked.project.id="JobLogTimer" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
33
<component name="FacetManager">
44
<facet type="java-gradle" name="Java-Gradle">
55
<configuration>
@@ -8,10 +8,11 @@
88
</configuration>
99
</facet>
1010
</component>
11-
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7" inherit-compiler-output="true">
11+
<component name="NewModuleRootManager" inherit-compiler-output="true">
1212
<exclude-output />
1313
<content url="file://$MODULE_DIR$">
1414
<excludeFolder url="file://$MODULE_DIR$/.gradle" />
15+
<excludeFolder url="file://$MODULE_DIR$/build" />
1516
</content>
1617
<orderEntry type="inheritedJdk" />
1718
<orderEntry type="sourceFolder" forTests="false" />

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ The Android App JobLogTimer keeps track of the time you work and alarms your to
44

55
# ChangeLog
66

7+
V0.17: versionCode 15, 08.10.2020 Mr
8+
- Updated targetSdkVersion to 30 (Android 11)
9+
710
V0.16: versionCode 14, 08.02.2020 Mr
811
- Migrated from AppCompat to AndroidX
912
- Updated targetSdkVersion to 29 (Android 10)
@@ -123,3 +126,5 @@ Icon generator: http://romannurik.github.io/AndroidAssetStudio
123126
Support library: https://android-developers.googleblog.com/2015/05/android-design-support-library.html
124127

125128
AppCompat: https://android-developers.googleblog.com/2014/10/appcompat-v21-material-design-for-pre.html
129+
130+
AndoidX: https://developer.android.com/jetpack/androidx

app/build.gradle

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 29
4+
compileSdkVersion 30
55

66
/*
77
V7: Android 2.1.x ECLAIR_MR1
@@ -19,13 +19,15 @@ android {
1919
V26: Android 8.0 OREO
2020
V27: Android 8.1 OREO
2121
V28: Android 9 PIE
22+
V29: Android 10 Q
23+
V30: Android 11 R
2224
*/
2325
defaultConfig {
2426
applicationId "de.euhm.jlt"
2527
minSdkVersion 14
26-
targetSdkVersion 29
27-
versionCode 14
28-
versionName "0.16"
28+
targetSdkVersion 30
29+
versionCode 15
30+
versionName "0.17"
2931
}
3032

3133
signingConfigs {
@@ -50,9 +52,9 @@ android {
5052
}
5153

5254
dependencies {
55+
implementation 'androidx.appcompat:appcompat:1.2.0'
5356
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
54-
implementation 'androidx.appcompat:appcompat:1.0.0'
55-
implementation 'com.google.android.material:material:1.0.0'
57+
implementation 'com.google.android.material:material:1.2.1'
5658
}
5759

5860
System.setProperty('java.awt.headless', 'false')

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
google()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.5.3'
8+
classpath 'com.android.tools.build:gradle:4.0.2'
99
}
1010
}
1111

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Sep 06 13:08:21 CEST 2019
1+
#Wed Sep 16 21:46:25 CEST 2020
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-5.4.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

0 commit comments

Comments
 (0)