Skip to content

Commit

Permalink
add link to Ionic7-angular-sqlite-starter
Browse files Browse the repository at this point in the history
  • Loading branch information
jepiqueau committed May 31, 2023
1 parent 6367cf4 commit fb6722b
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 31 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 5.0.1 (2023-05-31)

### Added Features
- add Ionic react typeorm example PR#423 from Marcello Cosentino
- add link to Ionic7-angular-sqlite-starter

### Bug Fixes

- fix Readme.md file

# 5.0.0 (2023-05-24)

### Chore
Expand Down
56 changes: 31 additions & 25 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<p align="center"><br><img src="https://user-images.githubusercontent.com/236501/85893648-1c92e880-b7a8-11ea-926d-95355b8175c7.png" width="128" height="128" /></p>
<h3 align="center">SQLITE DATABASE</h3>
<p align="center"><strong><code>@capacitor-community/sqlite@next</code></strong></p>
<p align="center"><strong><code>@capacitor-community/sqlite</code></strong></p>
<br>
<p align="center" style="font-size:50px;color:red"><strong>CAPACITOR 5</strong></p><br>

Expand Down Expand Up @@ -48,33 +48,39 @@ npx cap sync

then add plugin to main `capacitor.config.json` file:

```json
{
"appId": "com.example.app",
"appName": "cap",
"webDir": "dist",
"bundledWebRuntime": false,
"plugins": {
"CapacitorSQLite": {
"iosDatabaseLocation": "Library/CapacitorDatabase",
"iosIsEncryption": false,
"iosKeychainPrefix": "cap",
"iosBiometric": {
"biometricAuth": false,
"biometricTitle" : "Biometric login for capacitor sqlite"
```ts
import { CapacitorConfig } from '@capacitor/cli';

const config: CapacitorConfig = {
appId: 'com.jeep.app.ionic7.angular.sqlite',
appName: 'ionic7-angular-sqlite-starter',
webDir: 'www',
server: {
androidScheme: 'https'
},
plugins: {
CapacitorSQLite: {
iosDatabaseLocation: 'Library/CapacitorDatabase',
iosIsEncryption: true,
iosKeychainPrefix: 'angular-sqlite-app-starter',
iosBiometric: {
biometricAuth: false,
biometricTitle : "Biometric login for capacitor sqlite"
},
"androidIsEncryption": false,
"androidBiometric": {
"biometricAuth" : false,
"biometricTitle" : "Biometric login for capacitor sqlite",
"biometricSubTitle" : "Log in using your biometric"
androidIsEncryption: true,
androidBiometric: {
biometricAuth : false,
biometricTitle : "Biometric login for capacitor sqlite",
biometricSubTitle : "Log in using your biometric"
},
"electronWindowsLocation": "C:\\ProgramData\\CapacitorDatabases",
"electronMacLocation": "YOUR_VOLUME/CapacitorDatabases",
"electronLinuxLocation": "Databases"
electronWindowsLocation: "C:\\ProgramData\\CapacitorDatabases",
electronMacLocation: "/Volumes/Development_Lacie/Development/Databases",
electronLinuxLocation: "Databases"
}
}
}
};
export default config;

```

## More Reading:
Expand Down Expand Up @@ -259,7 +265,7 @@ npm install --save [email protected]

- [Ionic/Angular Usage Documentation](https://github.com/capacitor-community/sqlite/blob/master/docs/Ionic-Angular-Usage.md)

- [ionic-angular-sqlite-starter](https://github.com/jepiqueau/ionic-angular-sqlite-starter) Ionic 6 Angular SQLite CRUD operations.
- [ionic7-angular-sqlite-starter](https://github.com/jepiqueau/ionic7-angular-sqlite-starter) Ionic 7 Angular 16 Capacitor 5 SQLite CRUD operations.

- [angular-sqlite-app-starter](https://github.com/jepiqueau/angular-sqlite-app-starter) This one is now more for testing the issues.

Expand Down
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
10 changes: 5 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@
}
},
"dependencies": {
"jeep-sqlite": "^2.3.4"
"jeep-sqlite": "^2.3.6"
}
}

0 comments on commit fb6722b

Please sign in to comment.