@@ -18,7 +18,7 @@ import com.android.build.OutputFile
1818 * // the entry file for bundle generation
1919 * entryFile: "index.android.js",
2020 *
21- * // https://facebook.github.io/react-native /docs/performance#enable-the-ram-format
21+ * // https://reactnative.dev /docs/performance#enable-the-ram-format
2222 * bundleCommand: "ram-bundle",
2323 *
2424 * // whether to bundle JS and assets in debug mode
@@ -123,6 +123,8 @@ android {
123123 dexOptions {
124124 javaMaxHeapSize " 4g"
125125 }
126+
127+ ndkVersion rootProject. ext. ndkVersion
126128
127129 compileSdkVersion rootProject. ext. compileSdkVersion
128130
@@ -135,8 +137,8 @@ android {
135137 applicationId " com.badgermobile"
136138 minSdkVersion rootProject. ext. minSdkVersion
137139 targetSdkVersion rootProject. ext. targetSdkVersion
138- versionCode 9000021
139- versionName " 1.12 .1"
140+ versionCode 9000024
141+ versionName " 1.13 .1"
140142 missingDimensionStrategy ' react-native-camera' , ' general'
141143 }
142144 splits {
@@ -183,7 +185,7 @@ android {
183185 def abi = output. getFilter(OutputFile . ABI )
184186 if (abi != null ) { // null for the universal-debug, universal-release variants
185187 output. versionCodeOverride =
186- versionCodes . get(abi) * 1048576 + defaultConfig . versionCode
188+ defaultConfig . versionCode * 1000 + versionCodes . get(abi)
187189 }
188190 }
189191 }
@@ -192,6 +194,7 @@ android {
192194dependencies {
193195 implementation fileTree(dir : " libs" , include : [" *.jar" ])
194196 implementation " com.facebook.react:react-native:+" // From node_modules
197+ implementation " androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
195198
196199 if (enableHermes) {
197200 def hermesPath = " ../../node_modules/hermes-engine/android/" ;
0 commit comments