Skip to content

Commit 39814cb

Browse files
committed
Fixing depency issue on Android 8
1 parent 252b648 commit 39814cb

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

android/build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ android {
5656

5757
dependencies {
5858
compile "com.facebook.react:react-native:+"
59+
compile fileTree(dir: 'libs', include: ['*.jar'])
60+
compile 'com.android.support:appcompat-v7:23.2.1'
5961
compile 'ai.api:sdk:2.0.7@aar'
60-
compile 'ai.api:libai:1.4.8'
6162
compile 'com.google.code.gson:gson:2.3'
62-
}
63+
compile 'commons-io:commons-io:2.4'
64+
compile('ai.api:libai:1.4.8') {
65+
exclude module: 'log4j-core'
66+
}
67+
}

0 commit comments

Comments
 (0)