Skip to content

Commit 24a4820

Browse files
committedMay 2, 2024·
updade build gralde
1 parent a92edf8 commit 24a4820

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed
 

‎app/build.gradle

+11-8
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ android {
2222

2323
defaultConfig {
2424
applicationId "de.fraunhofer.fokus.OpenMobileNetworkToolkit"
25+
//targetSdkPreview "VanillaIceCream"
2526
minSdk 31
2627
targetSdk 34
27-
versionCode 1
28-
versionName "0.1"
28+
versionCode 2
29+
versionName "0.2"
2930

3031
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3132
signingConfig signingConfigs.debug
@@ -40,7 +41,8 @@ android {
4041

4142
buildTypes {
4243
release {
43-
minifyEnabled false
44+
minifyEnabled true
45+
shrinkResources true
4446
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
4547
signingConfig signingConfigs.debug
4648
}
@@ -60,15 +62,16 @@ android {
6062
lint {
6163
abortOnError false
6264
}
65+
buildToolsVersion '34.0.0'
6366
}
6467

6568
spdxSbom {
6669
targets {
67-
create("release") {
70+
register("release") {
6871
configurations = ['releaseRuntimeClasspath']
6972
scm {
7073
uri.set("https://github.com/omnt/OpenMobileNetworkToolkit")
71-
revision.set("0.1")
74+
revision.set("0.2")
7275
}
7376
document {
7477
name.set("OpenMobileNetworkToolkit")
@@ -88,10 +91,10 @@ dependencies {
8891
implementation "androidx.room:room-runtime:$room_version"
8992
annotationProcessor "androidx.room:room-compiler:$room_version"
9093
implementation 'androidx.appcompat:appcompat:1.6.1'
91-
implementation 'com.google.guava:guava:32.1.3-jre'
94+
implementation 'com.google.guava:guava:33.1.0-jre'
9295
implementation 'androidx.concurrent:concurrent-futures:1.1.0'
93-
implementation 'androidx.activity:activity:1.8.2'
94-
implementation 'androidx.fragment:fragment:1.6.2'
96+
implementation 'androidx.activity:activity:1.9.0'
97+
implementation 'androidx.fragment:fragment:1.7.0'
9598
implementation 'androidx.appcompat:appcompat:1.6.1'
9699
implementation 'com.google.android.material:material:1.11.0'
97100
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'

0 commit comments

Comments
 (0)
Please sign in to comment.