File tree 5 files changed +19
-11
lines changed
5 files changed +19
-11
lines changed Original file line number Diff line number Diff line change 1
1
<?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" >
3
3
<component name =" FacetManager" >
4
4
<facet type =" java-gradle" name =" Java-Gradle" >
5
5
<configuration >
8
8
</configuration >
9
9
</facet >
10
10
</component >
11
- <component name =" NewModuleRootManager" LANGUAGE_LEVEL = " JDK_1_7 " inherit-compiler-output =" true" >
11
+ <component name =" NewModuleRootManager" inherit-compiler-output =" true" >
12
12
<exclude-output />
13
13
<content url =" file://$MODULE_DIR$" >
14
14
<excludeFolder url =" file://$MODULE_DIR$/.gradle" />
15
+ <excludeFolder url =" file://$MODULE_DIR$/build" />
15
16
</content >
16
17
<orderEntry type =" inheritedJdk" />
17
18
<orderEntry type =" sourceFolder" forTests =" false" />
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ The Android App JobLogTimer keeps track of the time you work and alarms your to
4
4
5
5
# ChangeLog
6
6
7
+ V0.17: versionCode 15, 08.10.2020 Mr
8
+ - Updated targetSdkVersion to 30 (Android 11)
9
+
7
10
V0.16: versionCode 14, 08.02.2020 Mr
8
11
- Migrated from AppCompat to AndroidX
9
12
- Updated targetSdkVersion to 29 (Android 10)
@@ -123,3 +126,5 @@ Icon generator: http://romannurik.github.io/AndroidAssetStudio
123
126
Support library: https://android-developers.googleblog.com/2015/05/android-design-support-library.html
124
127
125
128
AppCompat: https://android-developers.googleblog.com/2014/10/appcompat-v21-material-design-for-pre.html
129
+
130
+ AndoidX: https://developer.android.com/jetpack/androidx
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 29
4
+ compileSdkVersion 30
5
5
6
6
/*
7
7
V7: Android 2.1.x ECLAIR_MR1
@@ -19,13 +19,15 @@ android {
19
19
V26: Android 8.0 OREO
20
20
V27: Android 8.1 OREO
21
21
V28: Android 9 PIE
22
+ V29: Android 10 Q
23
+ V30: Android 11 R
22
24
*/
23
25
defaultConfig {
24
26
applicationId " de.euhm.jlt"
25
27
minSdkVersion 14
26
- targetSdkVersion 29
27
- versionCode 14
28
- versionName " 0.16 "
28
+ targetSdkVersion 30
29
+ versionCode 15
30
+ versionName " 0.17 "
29
31
}
30
32
31
33
signingConfigs {
@@ -50,9 +52,9 @@ android {
50
52
}
51
53
52
54
dependencies {
55
+ implementation ' androidx.appcompat:appcompat:1.2.0'
53
56
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'
56
58
}
57
59
58
60
System . setProperty(' java.awt.headless' , ' false' )
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
google()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:3.5.3 '
8
+ classpath ' com.android.tools.build:gradle:4.0.2 '
9
9
}
10
10
}
11
11
Original file line number Diff line number Diff line change 1
- # Fri Sep 06 13:08:21 CEST 2019
1
+ # Wed Sep 16 21:46:25 CEST 2020
2
2
distributionBase =GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
You can’t perform that action at this time.
0 commit comments