├── LICENSE ├── README.md ├── SCsub ├── android ├── AndroidManifestChunk.xml ├── KeyValDatabase.java ├── KeyValueStorage.java ├── SQLBridge.java └── data │ ├── AESObfuscator.java │ ├── Base64.java │ └── Base64DecoderException.java ├── config.py ├── config.pyc └── res └── values └── strings.xml /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/README.md -------------------------------------------------------------------------------- /SCsub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /android/AndroidManifestChunk.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /android/KeyValDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/KeyValDatabase.java -------------------------------------------------------------------------------- /android/KeyValueStorage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/KeyValueStorage.java -------------------------------------------------------------------------------- /android/SQLBridge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/SQLBridge.java -------------------------------------------------------------------------------- /android/data/AESObfuscator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/data/AESObfuscator.java -------------------------------------------------------------------------------- /android/data/Base64.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/data/Base64.java -------------------------------------------------------------------------------- /android/data/Base64DecoderException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/android/data/Base64DecoderException.java -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/config.py -------------------------------------------------------------------------------- /config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/config.pyc -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrogSquare/GodotSQL/HEAD/res/values/strings.xml --------------------------------------------------------------------------------