File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ dependencies {
248
248
...
249
249
compile project(':react-native-sqlite-storage')
250
250
compile project(':sqlite-plugin-provider')
251
- // sqlite cipher support:
251
+ // To add sqlite cipher support:
252
252
compile project(':sql-cipher-plugin')
253
253
}
254
254
```
@@ -273,7 +273,7 @@ public class MainActivity extends Activity implements DefaultHardwareBackBtnHand
273
273
.setBundleAssetName(" index.android.bundle" ) // this is dependant on how you name you JS files, example assumes index.android.js
274
274
.setJSMainModuleName(" index.android" ) // this is dependant on how you name you JS files, example assumes index.android.js
275
275
.addPackage(new MainReactPackage ())
276
- .addPackage(new SQLitePluginPackage ()) // register SQLite Plugin here
276
+ .addPackage(new SQLitePluginPackage ()) // register SQLite Plugin here. For SQLiteCipher support pass SqliteCipherConnectionProvider to PluginPackage.
277
277
.setUseDeveloperSupport(BuildConfig . DEBUG )
278
278
.setInitialLifecycleState(LifecycleState . RESUMED )
279
279
.build();
You can’t perform that action at this time.
0 commit comments