Skip to content

Commit 5e31336

Browse files
committed
3.0.1
1 parent b82dfea commit 5e31336

File tree

6 files changed

+5312
-7326
lines changed

6 files changed

+5312
-7326
lines changed

android/build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22

33
buildscript {
44
ext {
5-
buildToolsVersion = "29.0.2"
6-
minSdkVersion = 19
5+
buildToolsVersion = "29.0.3"
6+
minSdkVersion = 21
77
compileSdkVersion = 29
88
targetSdkVersion = 29
99
supportLibVersion = "28.0.0"
1010
// kotlin_version = '1.3.21'
11+
ndkVersion = "20.1.5948944"
1112
}
1213
repositories {
1314
google()
1415
jcenter()
1516
}
1617
dependencies {
17-
classpath("com.android.tools.build:gradle:3.5.3")
18+
classpath("com.android.tools.build:gradle:4.1.0")
1819
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1920
// NOTE: Do not place your application dependencies here; they belong
2021
// in the individual module build.gradle files
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

ios/Podfile

+5-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@ platform :ios, '11.0'
66
target 'tester' do
77
config = use_native_modules!
88

9-
use_react_native!(:path => config["reactNativePath"])
10-
#pod 'Argyle', :build_type => :dynamic_framework
9+
use_react_native!(
10+
:path => config[:reactNativePath],
11+
# to enable hermes on iOS, change `false` to `true` and then install pods
12+
:hermes_enabled => false
13+
)
1114

1215
target 'testerTests' do
1316
inherit! :complete

0 commit comments

Comments
 (0)