Skip to content

Commit 52fe8d9

Browse files
authored
Merge pull request #41 from sentry-demos/fix_compileSdkVersion_room_dependency
Fix: CompileSdkVersion, Room, & Release artifacts
2 parents 7ec553b + 0a9575e commit 52fe8d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

app-debug.apk

-58.1 KB
Binary file not shown.

app-release.apk

146 KB
Binary file not shown.

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apply plugin: 'io.sentry.android.gradle'
2121
//}
2222

2323
android {
24-
compileSdkVersion 31
24+
compileSdkVersion 29
2525

2626
compileOptions {
2727
sourceCompatibility JavaVersion.VERSION_1_8
@@ -31,7 +31,7 @@ android {
3131
defaultConfig {
3232
applicationId "com.example.vu.android"
3333
minSdkVersion 21
34-
targetSdkVersion 31
34+
targetSdkVersion 29
3535
versionCode 20
3636
versionName "2.0.0"
3737

@@ -86,10 +86,10 @@ dependencies {
8686
implementation 'androidx.navigation:navigation-ui:2.1.0'
8787
implementation 'com.android.support:support-core-utils:28.0.0'
8888
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
89-
def fragment_version = "1.4.1"
89+
def fragment_version = "1.3.2"
9090
// Java language implementation
9191
implementation "androidx.fragment:fragment:$fragment_version"
92-
def room_version = "2.4.2"
92+
def room_version = "2.0.0"
9393

9494
implementation "androidx.room:room-runtime:$room_version"
9595
annotationProcessor "androidx.room:room-compiler:$room_version"

0 commit comments

Comments
 (0)