Skip to content

Commit 3821116

Browse files
author
Ayush Gupta
committed
ADDED Missing compile options to android build.gradle
The missing options caused build to fail when one signal was used in a project along with detox.
1 parent 06085c1 commit 3821116

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

android/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ android {
1616
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1717
}
1818
}
19+
20+
compileOptions {
21+
sourceCompatibility JavaVersion.VERSION_1_8
22+
targetCompatibility JavaVersion.VERSION_1_8
23+
}
1924
}
2025

2126
dependencies {

0 commit comments

Comments
 (0)