SQLConnection for Android and iOS : React-Native

Posted on Leave a commentPosted in ReactNative

# SQLiteConnection_Android_iOS NPM Database Connection Package for android https://www.npmjs.com/package/reactnative_sqlconnection_android_ios   Steps: 1:  npm install –save sqliteconnection_android_ios  2: npm link sqliteconnection_android_ios 3: Add following code in settings.gradle include ‘:reactnative_sqlconnection_android_ios’ project(‘:reactnative_sqlconnection_android_ios’).projectDir = new File(rootProject.projectDir, ‘../node_modules/reactnative_sqlconnection_android_ios/android’) 4: Add in  App build.gradle compile project(“:reactnative_sqlconnection_android_ios”) 5: Check in default configuration with multidex enable or not multiDexEnabled true     @Android […]

Create React-Native-Bridge: Native Android and iOS Code

Posted on Leave a commentPosted in ReactNative

Bridging native modules & UI components. Getting Started npm install -g react-native-create-bridge or yarn global add react-native-create-bridge From the root of your React Native project, run create-bridge Ex. SQLiteConnection_Android_iOS>create-bridge ? What is your bridge module called? SQLConnection ? What type of bridge would you like to create? (Press <space> to select, <a> t o toggle all, <i> to […]