@capacitor-community/sqlite 5.7.3 → 6.0.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/android/build.gradle +5 -5
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<h3 align="center">SQLITE DATABASE</h3>
|
|
3
3
|
<p align="center"><strong><code>@capacitor-community/sqlite</code></strong></p>
|
|
4
4
|
<br>
|
|
5
|
-
<p align="center" style="font-size:50px;color:red"><strong>CAPACITOR
|
|
5
|
+
<p align="center" style="font-size:50px;color:red"><strong>CAPACITOR 6</strong></p><br>
|
|
6
6
|
<br>
|
|
7
7
|
<!-- Note from the Owner - Start -->
|
|
8
8
|
<p align="center" style="font-size:50px;color:red"><strong>Note from the Owner</strong></p>
|
package/android/build.gradle
CHANGED
|
@@ -11,7 +11,7 @@ buildscript {
|
|
|
11
11
|
mavenCentral()
|
|
12
12
|
}
|
|
13
13
|
dependencies {
|
|
14
|
-
classpath 'com.android.tools.build:gradle:8.
|
|
14
|
+
classpath 'com.android.tools.build:gradle:8.2.1'
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
@@ -19,13 +19,13 @@ apply plugin: 'com.android.library'
|
|
|
19
19
|
|
|
20
20
|
android {
|
|
21
21
|
namespace "com.getcapacitor.community.database.sqlite"
|
|
22
|
-
|
|
22
|
+
compileSdk project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 34
|
|
23
23
|
packagingOptions {
|
|
24
24
|
exclude 'build-data.properties'
|
|
25
25
|
}
|
|
26
26
|
defaultConfig {
|
|
27
27
|
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
|
|
28
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion :
|
|
28
|
+
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 34
|
|
29
29
|
versionCode 1
|
|
30
30
|
versionName "1.0"
|
|
31
31
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
@@ -56,13 +56,13 @@ dependencies {
|
|
|
56
56
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
57
57
|
implementation project(':capacitor-android')
|
|
58
58
|
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
|
59
|
-
implementation 'androidx.room:room-runtime:2.
|
|
59
|
+
implementation 'androidx.room:room-runtime:2.6.1'
|
|
60
60
|
testImplementation "junit:junit:$junitVersion"
|
|
61
61
|
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
|
62
62
|
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
|
63
63
|
implementation "androidx.coordinatorlayout:coordinatorlayout:1.2.0"
|
|
64
64
|
implementation 'net.zetetic:android-database-sqlcipher:4.5.3'
|
|
65
|
-
implementation "androidx.sqlite:sqlite:2.
|
|
65
|
+
implementation "androidx.sqlite:sqlite:2.4.0"
|
|
66
66
|
//security library
|
|
67
67
|
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
68
68
|
implementation "androidx.biometric:biometric:1.1.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capacitor-community/sqlite",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0-beta.1",
|
|
4
4
|
"description": "Community plugin for native & electron SQLite databases",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -59,11 +59,11 @@
|
|
|
59
59
|
"prepublishOnly": "npm run build && npm run build-electron && npm run docgen"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@capacitor/android": "^
|
|
63
|
-
"@capacitor/cli": "^
|
|
64
|
-
"@capacitor/core": "^
|
|
62
|
+
"@capacitor/android": "^6.0.0",
|
|
63
|
+
"@capacitor/cli": "^6.0.0",
|
|
64
|
+
"@capacitor/core": "^6.0.0",
|
|
65
65
|
"@capacitor/docgen": "^0.0.17",
|
|
66
|
-
"@capacitor/ios": "^
|
|
66
|
+
"@capacitor/ios": "^6.0.0",
|
|
67
67
|
"@ionic/eslint-config": "^0.3.0",
|
|
68
68
|
"@ionic/prettier-config": "^1.0.1",
|
|
69
69
|
"@ionic/swiftlint-config": "^1.1.2",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"typescript": "~4.1.5"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
|
-
"@capacitor/core": "^
|
|
81
|
+
"@capacitor/core": "^6.0.0"
|
|
82
82
|
},
|
|
83
83
|
"prettier": "@ionic/prettier-config",
|
|
84
84
|
"swiftlint": "@ionic/swiftlint-config",
|