Skip to content

Commit

Permalink
Merge branch 'fix-ios-crash-screen' of github.com:ytgov/sights-and-si…
Browse files Browse the repository at this point in the history
…tes-app into fix-ios-crash-screen
  • Loading branch information
robert-ngo committed Apr 8, 2024
2 parents bdae6ea + 5dc3342 commit b0f58f1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
7 changes: 7 additions & 0 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,13 @@ android {

compileSdkVersion rootProject.ext.compileSdkVersion

packagingOptions {
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
}

defaultConfig {
applicationId "com.yukon"
minSdkVersion rootProject.ext.minSdkVersion
Expand Down
13 changes: 13 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,19 @@ buildscript {

allprojects {
repositories {
maven {
url 'https://api.mapbox.com/downloads/v2/releases/maven'
authentication {
basic(BasicAuthentication)
}
credentials {
// Do not change the username below.
// This should always be `mapbox` (not your username).
username = 'mapbox'
// Use the secret token you stored in gradle.properties as the password
password = project.properties['MAPBOX_DOWNLOADS_TOKEN'] ?: ""
}
}
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url("$rootDir/../node_modules/react-native/android")
Expand Down

0 comments on commit b0f58f1

Please sign in to comment.