File tree Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Expand file tree Collapse file tree 4 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ foreground app via service on Android 2.3 (API 9) and above.
13
13
so, minimum SDK will be Android 4.0 (API 14).
14
14
<br />Since v2.0.0, it uses [ AndroidX] ( https://developer.android.com/jetpack/androidx/ ) so, first
15
15
[ migrate] ( https://developer.android.com/jetpack/androidx/migrate ) your project to AndroidX.
16
+ <br />Since v4.1.0, it is dependent on Java 8 due to the dependency on
17
+ [ Dynamic Utils] ( https://github.com/pranavpandey/dynamic-utils ) .
16
18
17
19
---
18
20
@@ -36,7 +38,7 @@ It can be installed by adding the following dependency to your `build.gradle` fi
36
38
``` groovy
37
39
dependencies {
38
40
// For AndroidX enabled projects.
39
- implementation 'com.pranavpandey.android:dynamic-engine:4.0 .0'
41
+ implementation 'com.pranavpandey.android:dynamic-engine:4.1 .0'
40
42
41
43
// For legacy projects.
42
44
implementation 'com.pranavpandey.android:dynamic-engine:1.3.0'
Original file line number Diff line number Diff line change 67
67
mavenGroup = ' com.pranavpandey.android'
68
68
mavenDir = ' com/pranavpandey/android'
69
69
mavenArtifactId = ' dynamic-engine'
70
- mavenInceptionYear = 2017
71
- mavenVersion = ' 4.0 .0'
72
- mavenVersionCode = 25
70
+ mavenInceptionYear = ' 2017'
71
+ mavenVersion = ' 4.1 .0'
72
+ mavenVersionCode = 26
73
73
74
74
developerId = ' pranavpandey'
75
75
developerName = ' Pranav Pandey'
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ android {
28
28
sourceSets {
29
29
main. res. srcDirs ' res'
30
30
}
31
+
32
+ compileOptions {
33
+ sourceCompatibility JavaVersion . VERSION_1_8
34
+ targetCompatibility JavaVersion . VERSION_1_8
35
+ }
31
36
}
32
37
33
38
dependencies {
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ publishing {
83
83
84
84
// SCM
85
85
def scm = asNode(). appendNode(' scm' )
86
- scm. appendNode(' connection' , " ${ gitUrl} .git" )
86
+ scm. appendNode(' connection' , " scm:git: ${ gitUrl} .git" )
87
87
scm. appendNode(' developerConnection' , gitUrl)
88
88
scm. appendNode(' url' , siteUrl)
89
89
You can’t perform that action at this time.
0 commit comments