Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #3 from firesoft-de/dev
Browse files Browse the repository at this point in the history
Geht klar
  • Loading branch information
firesoft-de authored Jan 4, 2018
2 parents 9b4eef4 + cdc704f commit 970a8b3
Show file tree
Hide file tree
Showing 69 changed files with 4,265 additions and 288 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@

server/access.txt
server/skripte/access.txt
*.csv
*.sql
server/Datenbank
Binary file added DiTaKa/app/release/app-release.apk
Binary file not shown.
1 change: 1 addition & 0 deletions DiTaKa/app/release/output.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":2},"path":"app-release.apk","properties":{"packageId":"dresden.de.digitaleTaschenkarteBeladung","split":"","minSdkVersion":"18"}}]
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "7b606ee7896a7aa046bfc0d1090530f9",
"identityHash": "8bb730f64364aeaccecb4f4c62685f60",
"entities": [
{
"tableName": "equipment",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `name` TEXT, `description` TEXT, `categoryId` INTEGER NOT NULL, `mSetName` TEXT, `position` TEXT, `keywords` TEXT, PRIMARY KEY(`id`))",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER NOT NULL, `name` TEXT, `description` TEXT, `categoryId` INTEGER NOT NULL, `mSetName` TEXT, `position` TEXT, `keywords` TEXT, `additionalNotes` TEXT, PRIMARY KEY(`id`))",
"fields": [
{
"fieldPath": "id",
Expand Down Expand Up @@ -49,6 +49,12 @@
"columnName": "keywords",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "additionalNotes",
"columnName": "additionalNotes",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
Expand Down Expand Up @@ -107,7 +113,7 @@
],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, \"7b606ee7896a7aa046bfc0d1090530f9\")"
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, \"8bb730f64364aeaccecb4f4c62685f60\")"
]
}
}
3 changes: 2 additions & 1 deletion DiTaKa/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".SearchableActivity">
<activity android:name=".SearchableActivity"
android:parentActivityName=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
Expand Down
Binary file modified DiTaKa/app/src/main/ic_app-web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 970a8b3

Please sign in to comment.