Skip to content

Commit ff7940b

Browse files
authored
Merge pull request #32 from Couchbase-Ecosystem/cbl-321
feat: updated to RN 0.76.3/cbl 3.2.1
2 parents c7ae6a4 + 8c1fe82 commit ff7940b

File tree

130 files changed

+24384
-37380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+24384
-37380
lines changed

.eslintignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
android/
2+
build/
3+
expo-example/
4+
node_modules/
5+
dist/
6+
lib/
7+
src/cblite-js
8+
ios/
9+
bable.config.js

.eslintrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:@typescript-eslint/recommended",
5+
"plugin:react/recommended",
6+
"prettier"
7+
],
8+
"plugins": ["@typescript-eslint", "react", "prettier"],
9+
"rules": {
10+
"prettier/prettier": "error"
11+
}
12+
}

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "android/src/main/java/com/cblreactnative/cbl-js-kotlin"]
88
path = android/src/main/java/com/cblreactnative/cbl-js-kotlin
99
url = [email protected]:Couchbase-Ecosystem/cbl-js-kotlin.git
10+
[submodule "expo-example/cblite-js-tests"]
11+
path = expo-example/cblite-js-tests
12+
url = [email protected]:Couchbase-Ecosystem/cblite-js-tests.git

.prettierignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
android/
2+
build/
3+
expo-example/
4+
node_modules/
5+
dist/
6+
lib/
7+
src/cblite-js
8+
ios/
9+
bable.config.js

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"tabWidth": 2,
5+
"semi": true,
6+
"printWidth": 80
7+
}

android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ buildscript {
33
def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["CblReactnative_kotlinVersion"]
44

55
repositories {
6-
maven {url 'https://mobile.maven.couchbase.com/maven2/dev/'}
76
google()
7+
maven {url 'https://mobile.maven.couchbase.com/maven2/dev/'}
88
mavenCentral()
99
}
1010

@@ -50,7 +50,7 @@ def supportsNamespace() {
5050

5151
android {
5252
if (supportsNamespace()) {
53-
namespace "com.cbl.reactnative"
53+
namespace "com.cblreactnative"
5454
sourceSets {
5555
main {
5656
manifest.srcFile "src/main/AndroidManifestNew.xml"
@@ -90,8 +90,8 @@ repositories {
9090

9191
allprojects {
9292
repositories {
93-
maven { url 'https://mobile.maven.couchbase.com/maven2/dev/' }
9493
google()
94+
maven { url 'https://mobile.maven.couchbase.com/maven2/dev/' }
9595
mavenCentral()
9696
}
9797
}
@@ -107,6 +107,6 @@ dependencies {
107107
implementation "com.facebook.react:react-native:+"
108108
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
109109
implementation "org.json:json:20240303"
110-
implementation "com.couchbase.lite:couchbase-lite-android-ee-ktx:3.1.9"
110+
implementation "com.couchbase.lite:couchbase-lite-android-ee-ktx:3.2.1"
111111
}
112112

android/gradle.properties

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
CblReactnative_kotlinVersion=1.7.0
2-
CblReactnative_minSdkVersion=25
3-
CblReactnative_targetSdkVersion=31
4-
CblReactnative_compileSdkVersion=31
1+
CblReactnative_kotlinVersion=1.9.25
2+
CblReactnative_minSdkVersion=24
3+
CblReactnative_targetSdkVersion=34
4+
CblReactnative_compileSdkVersion=34
55
CblReactnative_ndkversion=21.4.7075529

android/src/main/java/com/cblreactnative/CblReactnativeModule.kt

+9-7
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ class CblReactnativeModule(reactContext: ReactApplicationContext) :
5252

5353
// Collection Functions
5454
@ReactMethod
55-
5655
fun collection_CreateCollection(
5756
collectionName: String,
5857
name: String,
@@ -484,7 +483,8 @@ class CblReactnativeModule(reactContext: ReactApplicationContext) :
484483

485484
@ReactMethod
486485
fun collection_Save(
487-
document: ReadableMap,
486+
document: String,
487+
blobs: String,
488488
docId: String,
489489
name: String,
490490
scopeName: String,
@@ -505,21 +505,23 @@ class CblReactnativeModule(reactContext: ReactApplicationContext) :
505505
concurrencyControl =
506506
DataAdapter.intToConcurrencyControl(concurrencyControlValue.toInt())
507507
}
508-
val doc = DataAdapter.toMap(document).toMap()
509508
val result = CollectionManager.saveDocument(
510509
docId,
511-
doc,
510+
document,
511+
blobs,
512512
concurrencyControl,
513513
collectionName,
514514
scopeName,
515515
name
516516
)
517-
writableMap.putString("_id", result.first)
518-
if (result.second != null) {
519-
writableMap.putBoolean("concurrencyControlResult", result.second!!)
517+
writableMap.putString("_id", result._id)
518+
if (result._concurrencyControl != null) {
519+
writableMap.putBoolean("concurrencyControlResult", result._concurrencyControl)
520520
} else {
521521
writableMap.putNull("concurrencyControlResult")
522522
}
523+
writableMap.putString("_revId", result._revId)
524+
writableMap.putInt("_sequence", result._sequence.toInt())
523525
context.runOnUiQueueThread {
524526
promise.resolve(writableMap)
525527
}

android/src/main/java/com/cblreactnative/DataAdapter.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ object DataAdapter {
7777
val itemValue = map[key]
7878
if (itemValue is Blob) {
7979
document.getBlob(key)?.let { blob ->
80-
val properties = blob.properties.toMap()
80+
val properties = blob.properties.toMutableMap()
81+
val raw = blob.content?.toTypedArray()
82+
properties["raw"] = raw
8183
map[key] = properties
8284
}
8385
}

babel.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-env node */
12
module.exports = {
23
presets: ['module:@react-native/babel-preset'],
34
};

cbl-reactnative.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Pod::Spec.new do |s|
1515
s.source = { :git => "https://github.com/Couchbase-Ecosystem/cbl-reactnative", :tag => "#{s.version}" }
1616

1717
s.swift_version = '5.5'
18-
s.dependency 'CouchbaseLite-Swift-Enterprise', '~> 3.1'
18+
s.dependency 'CouchbaseLite-Swift-Enterprise', '3.2.1'
1919
s.source_files = "ios/**/*.{h,m,mm,swift}"
2020

2121
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.

expo-example/ReactotronConfig.js

-5
This file was deleted.

expo-example/android/app/build.gradle

+11-36
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,6 @@ apply plugin: "com.facebook.react"
44

55
def projectRoot = rootDir.getAbsoluteFile().getParentFile().getAbsolutePath()
66

7-
static def versionToNumber(major, minor, patch) {
8-
return patch * 100 + minor * 10000 + major * 1000000
9-
}
10-
11-
def getRNVersion() {
12-
def version = providers.exec {
13-
workingDir(projectDir)
14-
commandLine("node", "-e", "console.log(require('react-native/package.json').version);")
15-
}.standardOutput.asText.get().trim()
16-
17-
def coreVersion = version.split("-")[0]
18-
def (major, minor, patch) = coreVersion.tokenize('.').collect { it.toInteger() }
19-
20-
return versionToNumber(
21-
major,
22-
minor,
23-
patch
24-
)
25-
}
26-
def rnVersion = getRNVersion()
27-
287
/**
298
* This is the configuration block to customize your React Native Android app.
309
* By default you don't need to apply any configuration, just uncomment the lines you need.
@@ -41,12 +20,12 @@ react {
4120
bundleCommand = "export:embed"
4221

4322
/* Folders */
44-
// The root of your project, i.e. where "package.json" lives. Default is '..'
45-
// root = file("../")
46-
// The folder where the react-native NPM package is. Default is ../node_modules/react-native
47-
// reactNativeDir = file("../node_modules/react-native")
48-
// The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen
49-
// codegenDir = file("../node_modules/@react-native/codegen")
23+
// The root of your project, i.e. where "package.json" lives. Default is '../..'
24+
// root = file("../../")
25+
// The folder where the react-native NPM package is. Default is ../../node_modules/react-native
26+
// reactNativeDir = file("../../node_modules/react-native")
27+
// The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen
28+
// codegenDir = file("../../node_modules/@react-native/codegen")
5029

5130
/* Variants */
5231
// The list of variants to that are debuggable. For those we're going to
@@ -79,10 +58,8 @@ react {
7958
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
8059
// hermesFlags = ["-O", "-output-source-map"]
8160

82-
if (rnVersion >= versionToNumber(0, 75, 0)) {
83-
/* Autolinking */
84-
autolinkLibrariesWithApp()
85-
}
61+
/* Autolinking */
62+
autolinkLibrariesWithApp()
8663
}
8764

8865
/**
@@ -144,6 +121,9 @@ android {
144121
useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false)
145122
}
146123
}
124+
androidResources {
125+
ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~'
126+
}
147127
}
148128

149129
// Apply static values from `gradle.properties` to the `android.packagingOptions`
@@ -194,8 +174,3 @@ dependencies {
194174
implementation jscFlavor
195175
}
196176
}
197-
198-
if (rnVersion < versionToNumber(0, 75, 0)) {
199-
apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
200-
applyNativeModulesAppBuildGradle(project)
201-
}

expo-example/android/app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<data android:scheme="https"/>
1212
</intent>
1313
</queries>
14-
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme">
14+
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme" android:supportsRtl="true">
1515
<meta-data android:name="expo.modules.updates.ENABLED" android:value="false"/>
1616
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/>
1717
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="0"/>
@@ -29,6 +29,5 @@
2929
<data android:scheme="exp+expo-example"/>
3030
</intent-filter>
3131
</activity>
32-
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false"/>
3332
</application>
3433
</manifest>

expo-example/android/app/src/main/java/com/couchbase/expo/example/MainActivity.kt

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
package com.couchbase.expo.example
2+
import expo.modules.splashscreen.SplashScreenManager
23

34
import android.os.Build
45
import android.os.Bundle
@@ -15,7 +16,10 @@ class MainActivity : ReactActivity() {
1516
// Set the theme to AppTheme BEFORE onCreate to support
1617
// coloring the background, status bar, and navigation bar.
1718
// This is required for expo-splash-screen.
18-
setTheme(R.style.AppTheme);
19+
// setTheme(R.style.AppTheme);
20+
// @generated begin expo-splashscreen - expo prebuild (DO NOT MODIFY) sync-f3ff59a738c56c9a6119210cb55f0b613eb8b6af
21+
SplashScreenManager.registerOnActivity(this)
22+
// @generated end expo-splashscreen
1923
super.onCreate(null)
2024
}
2125

expo-example/android/app/src/main/java/com/couchbase/expo/example/MainApplication.kt

+4-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import com.facebook.react.ReactPackage
1010
import com.facebook.react.ReactHost
1111
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
1212
import com.facebook.react.defaults.DefaultReactNativeHost
13+
import com.facebook.react.soloader.OpenSourceMergedSoMapping
1314
import com.facebook.soloader.SoLoader
1415

1516
import expo.modules.ApplicationLifecycleDispatcher
@@ -21,9 +22,10 @@ class MainApplication : Application(), ReactApplication {
2122
this,
2223
object : DefaultReactNativeHost(this) {
2324
override fun getPackages(): List<ReactPackage> {
25+
val packages = PackageList(this).packages
2426
// Packages that cannot be autolinked yet can be added manually here, for example:
2527
// packages.add(new MyReactNativePackage());
26-
return PackageList(this).packages
28+
return packages
2729
}
2830

2931
override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry"
@@ -40,7 +42,7 @@ class MainApplication : Application(), ReactApplication {
4042

4143
override fun onCreate() {
4244
super.onCreate()
43-
SoLoader.init(this, false)
45+
SoLoader.init(this, OpenSourceMergedSoMapping)
4446
if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
4547
// If you opted-in for the New Architecture, we load the native entry point for this app.
4648
load()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
22
<item android:drawable="@color/splashscreen_background"/>
3+
<item>
4+
<bitmap android:gravity="center" android:src="@drawable/splashscreen_logo"/>
5+
</item>
36
</layer-list>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

expo-example/android/app/src/main/res/values/styles.xml

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
<item name="android:textColorHint">#c8c8c8</item>
1212
<item name="android:textColor">@android:color/black</item>
1313
</style>
14-
<style name="Theme.App.SplashScreen" parent="AppTheme">
15-
<item name="android:windowBackground">@drawable/splashscreen</item>
14+
<style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
15+
<item name="windowSplashScreenBackground">@color/splashscreen_background</item>
16+
<item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item>
17+
<item name="postSplashScreenTheme">@style/AppTheme</item>
1618
</style>
1719
</resources>

expo-example/android/build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
buildscript {
44
ext {
5-
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '34.0.0'
6-
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '23')
7-
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '34')
5+
buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0'
6+
minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24')
7+
compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35')
88
targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34')
9-
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.23'
9+
kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.24'
1010

1111
ndkVersion = "26.1.10909125"
1212
}

expo-example/android/gradle.properties

-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
2222
# https://developer.android.com/topic/libraries/support-library/androidx-rn
2323
android.useAndroidX=true
2424

25-
# Automatically convert third-party libraries to use AndroidX
26-
android.enableJetifier=true
27-
2825
# Enable AAPT2 PNG crunching
2926
android.enablePngCrunchInReleaseBuilds=true
3027

Binary file not shown.

expo-example/android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)