Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def enableProguardInReleaseBuilds = false

android {
compileSdkVersion 28
buildToolsVersion "27.0.3"
buildToolsVersion "29.0.2"

defaultConfig {
applicationId "com.go_social"
Expand All @@ -105,15 +105,15 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "armeabi-v7a", "x86"
abiFilters "armeabi-v7a", "arm64-v8a", "x86"
}
}
splits {
abi {
reset()
enable enableSeparateBuildPerCPUArchitecture
universalApk false // If true, also generate a universal APK
include "armeabi-v7a", "x86"
include "armeabi-v7a", "arm64-v8a", "x86"
}
}
buildTypes {
Expand Down
4 changes: 2 additions & 2 deletions android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Apr 06 13:26:18 IST 2021
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
# distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@
"react-native": "^0.58.6",
"react-native-elements": "^1.1.0",
"react-native-fbsdk": "1.0.0-rc.3",
"react-native-gesture-handler": "^1.0.12",
"react-native-gesture-handler": "^1.10.3",
"react-native-google-places-autocomplete": "^1.3.9",
"react-native-image-crop-picker": "^0.28.0",
"react-native-image-picker": "^2.0.0",
"react-native-maps": "^0.26.1",
"react-native-maps-directions": "^1.6.0",
"react-native-micro-animated-button": "0.0.28",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.0.0",
"react-native-vector-icons": "^6.1.0",
"react-navigation": "^4.0.6"
"react-navigation": "^4.4.4",
"react-navigation-stack": "^2.10.4"
},
"devDependencies": {
"babel-jest": "25.1.0",
Expand Down