Skip to content

Instantly share code, notes, and snippets.

@fhammerschmidt
Last active October 10, 2018 20:26
Show Gist options
  • Save fhammerschmidt/19a33a5df21fedd6441fcb0e071bf736 to your computer and use it in GitHub Desktop.
Save fhammerschmidt/19a33a5df21fedd6441fcb0e071bf736 to your computer and use it in GitHub Desktop.
react-native-audio patch to fix failing ./assembleRelease
diff -Naur react-native-audio/android/build.gradle react-native-audio-patched/android/build.gradle
--- react-native-audio/android/build.gradle 2018-10-10 13:09:44.000000000 +0200
+++ react-native-audio-patched/android/build.gradle 2018-10-10 22:15:11.000000000 +0200
@@ -1,8 +1,8 @@
apply plugin: 'com.android.library'
android {
- compileSdkVersion 23
- buildToolsVersion "23.0.2"
+ compileSdkVersion = 26
+ buildToolsVersion = "27.0.3"
defaultConfig {
minSdkVersion 16
@@ -19,6 +19,6 @@
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
- compile 'com.android.support:appcompat-v7:23.1.0'
+ compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.facebook.react:react-native:+'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment