├── .gitattributes ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmignore ├── .yarnrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── dog │ └── craftz │ └── sqlite_2 │ ├── RNSqlite2Module.java │ └── RNSqlite2Package.java ├── babel.config.js ├── docs ├── cover.png ├── firefox-logo.png └── inkdrop-logo.png ├── example ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ ├── AndroidManifest.xml │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativesqlite2 │ │ │ │ └── ReactNativeFlipper.java │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── reactnativesqlite2 │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── babel.config.js ├── index.tsx ├── ios │ ├── File.swift │ ├── Podfile │ ├── Podfile.lock │ ├── Sqlite2Example-Bridging-Header.h │ ├── Sqlite2Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Sqlite2Example.xcscheme │ ├── Sqlite2Example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── Sqlite2Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m ├── metro.config.js ├── package.json ├── src │ └── App.tsx └── yarn.lock ├── ios ├── RNSqlite2.h ├── RNSqlite2.m └── RNSqlite2.xcodeproj │ └── project.pbxproj ├── package.json ├── react-native-sqlite-2.podspec ├── scripts └── bootstrap.js ├── src ├── SQLiteDatabase.ts ├── SQLiteResult.ts ├── WebsqlDatabase.ts ├── __tests__ │ └── index.test.tsx └── index.ts ├── tsconfig.build.json ├── tsconfig.json ├── windows ├── .gitignore ├── RNSqlite2.Net46 │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RNSqlite2.Net46.csproj │ ├── app.config │ └── packages.config ├── RNSqlite2.sln ├── RNSqlite2 │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── RNSqlite2.rd.xml │ ├── RNSqlite2.csproj │ ├── project.json │ └── project.lock.json ├── RNSqlite2Module.cs └── RNSqlite2Package.cs └── yarn.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/.npmignore -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/.yarnrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/dog/craftz/sqlite_2/RNSqlite2Module.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/android/src/main/java/dog/craftz/sqlite_2/RNSqlite2Module.java -------------------------------------------------------------------------------- /android/src/main/java/dog/craftz/sqlite_2/RNSqlite2Package.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/android/src/main/java/dog/craftz/sqlite_2/RNSqlite2Package.java -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/docs/cover.png -------------------------------------------------------------------------------- /docs/firefox-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/docs/firefox-logo.png -------------------------------------------------------------------------------- /docs/inkdrop-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/docs/inkdrop-logo.png -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/debug/java/com/example/reactnativesqlite2/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/debug/java/com/example/reactnativesqlite2/ReactNativeFlipper.java -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativesqlite2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/java/com/example/reactnativesqlite2/MainActivity.java -------------------------------------------------------------------------------- /example/android/app/src/main/java/com/example/reactnativesqlite2/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/java/com/example/reactnativesqlite2/MainApplication.java -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/app.json -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/ios/File.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/File.swift -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Sqlite2Example-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/Sqlite2Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/Sqlite2Example.xcodeproj/xcshareddata/xcschemes/Sqlite2Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example.xcodeproj/xcshareddata/xcschemes/Sqlite2Example.xcscheme -------------------------------------------------------------------------------- /example/ios/Sqlite2Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/Sqlite2Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/Info.plist -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example/ios/Sqlite2Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/ios/Sqlite2Example/main.m -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /ios/RNSqlite2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/ios/RNSqlite2.h -------------------------------------------------------------------------------- /ios/RNSqlite2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/ios/RNSqlite2.m -------------------------------------------------------------------------------- /ios/RNSqlite2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/ios/RNSqlite2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/package.json -------------------------------------------------------------------------------- /react-native-sqlite-2.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/react-native-sqlite-2.podspec -------------------------------------------------------------------------------- /scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/scripts/bootstrap.js -------------------------------------------------------------------------------- /src/SQLiteDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/src/SQLiteDatabase.ts -------------------------------------------------------------------------------- /src/SQLiteResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/src/SQLiteResult.ts -------------------------------------------------------------------------------- /src/WebsqlDatabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/src/WebsqlDatabase.ts -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/tsconfig.json -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/.gitignore -------------------------------------------------------------------------------- /windows/RNSqlite2.Net46/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2.Net46/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /windows/RNSqlite2.Net46/RNSqlite2.Net46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2.Net46/RNSqlite2.Net46.csproj -------------------------------------------------------------------------------- /windows/RNSqlite2.Net46/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2.Net46/app.config -------------------------------------------------------------------------------- /windows/RNSqlite2.Net46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2.Net46/packages.config -------------------------------------------------------------------------------- /windows/RNSqlite2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2.sln -------------------------------------------------------------------------------- /windows/RNSqlite2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /windows/RNSqlite2/Properties/RNSqlite2.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2/Properties/RNSqlite2.rd.xml -------------------------------------------------------------------------------- /windows/RNSqlite2/RNSqlite2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2/RNSqlite2.csproj -------------------------------------------------------------------------------- /windows/RNSqlite2/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2/project.json -------------------------------------------------------------------------------- /windows/RNSqlite2/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2/project.lock.json -------------------------------------------------------------------------------- /windows/RNSqlite2Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2Module.cs -------------------------------------------------------------------------------- /windows/RNSqlite2Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/windows/RNSqlite2Package.cs -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craftzdog/react-native-sqlite-2/HEAD/yarn.lock --------------------------------------------------------------------------------