Skip to content

Commit fbb5f65

Browse files
committed
1.0.5
1 parent aef6782 commit fbb5f65

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

gradle.properties

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,7 @@ kotlin.code.style=official
2020
# Enables namespacing of each library's R class so that its R class includes only the
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
23-
android.nonTransitiveRClass=true
23+
android.nonTransitiveRClass=true
24+
org.gradle.parallel=true
25+
org.gradle.daemon=true
26+
org.gradle.caching=true

wireguard/build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010

1111
defaultConfig {
1212
minSdk = 21
13-
version = "1.0.3"
13+
version = "1.0.5"
1414

1515
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
1616
consumerProguardFiles("consumer-rules.pro")
@@ -26,11 +26,11 @@ android {
2626
}
2727
}
2828
compileOptions {
29-
sourceCompatibility = JavaVersion.VERSION_11
30-
targetCompatibility = JavaVersion.VERSION_11
29+
sourceCompatibility = JavaVersion.VERSION_17
30+
targetCompatibility = JavaVersion.VERSION_17
3131
}
3232
kotlinOptions {
33-
jvmTarget = "11"
33+
jvmTarget = "17"
3434
}
3535
packaging {
3636
jniLibs {
@@ -50,7 +50,7 @@ publishing {
5050
create("release", MavenPublication::class) {
5151
groupId = "com.github.CodeWithTamim"
5252
artifactId = "WGAndroidLib"
53-
version = "1.0.3"
53+
version = "1.0.5"
5454

5555
afterEvaluate {
5656
from(components["release"])

0 commit comments

Comments
 (0)