正式发布 2.0.0 版本
This commit is contained in:
parent
0c5d30a486
commit
9c4209cbbe
8 changed files with 80 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"uniqueId": "com.dede.android_eggs:3.4.0",
|
||||
"uniqueId": "com.dede.android_eggs",
|
||||
"artifactVersion": "3.4.0",
|
||||
"name": "AndroidEasterEggs",
|
||||
"developers": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"uniqueId": "com.absinthe.libchecker:2.5.0",
|
||||
"uniqueId": "com.absinthe.libchecker",
|
||||
"artifactVersion": "2.5.0",
|
||||
"name": "LibChecker",
|
||||
"developers": [
|
||||
|
|
|
|||
16
app/licences/libraries/lotus.json
Normal file
16
app/licences/libraries/lotus.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"uniqueId": "com.dn0ne.player",
|
||||
"artifactVersion": "0.11.1",
|
||||
"name": "Lotus",
|
||||
"developers": [
|
||||
{
|
||||
"name": "dn0ne"
|
||||
}
|
||||
],
|
||||
"description": "Music player for Android",
|
||||
"website": "https://github.com/dn0ne/lotus",
|
||||
"tag": "custom",
|
||||
"licenses": [
|
||||
"GPL-3.0-or-later"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"uniqueId": "com.xinto.mauth:0.9.0",
|
||||
"uniqueId": "com.xinto.mauth",
|
||||
"artifactVersion": "0.9.0",
|
||||
"name": "Mauth",
|
||||
"developers": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"uniqueId": "me.ash.reader:0.11.1",
|
||||
"uniqueId": "me.ash.reader",
|
||||
"artifactVersion": "0.11.1",
|
||||
"name": "Read You",
|
||||
"developers": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"uniqueId": "com.github.crayonxiaoxin.abc:1.0.1",
|
||||
"uniqueId": "com.github.crayonxiaoxin.abc",
|
||||
"artifactVersion": "1.0.1",
|
||||
"name": "SkipAD",
|
||||
"developers": [
|
||||
|
|
|
|||
|
|
@ -0,0 +1,58 @@
|
|||
{
|
||||
"formatVersion": 1,
|
||||
"database": {
|
||||
"version": 2,
|
||||
"identityHash": "9bc6582a67d9172690c0c4be3ef2d724",
|
||||
"entities": [
|
||||
{
|
||||
"tableName": "todo",
|
||||
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`content` TEXT NOT NULL, `subject` INTEGER NOT NULL, `completed` INTEGER NOT NULL, `priority` REAL NOT NULL, `id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL)",
|
||||
"fields": [
|
||||
{
|
||||
"fieldPath": "content",
|
||||
"columnName": "content",
|
||||
"affinity": "TEXT",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "subject",
|
||||
"columnName": "subject",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "isCompleted",
|
||||
"columnName": "completed",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "priority",
|
||||
"columnName": "priority",
|
||||
"affinity": "REAL",
|
||||
"notNull": true
|
||||
},
|
||||
{
|
||||
"fieldPath": "id",
|
||||
"columnName": "id",
|
||||
"affinity": "INTEGER",
|
||||
"notNull": true
|
||||
}
|
||||
],
|
||||
"primaryKey": {
|
||||
"autoGenerate": true,
|
||||
"columnNames": [
|
||||
"id"
|
||||
]
|
||||
},
|
||||
"indices": [],
|
||||
"foreignKeys": []
|
||||
}
|
||||
],
|
||||
"views": [],
|
||||
"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, '9bc6582a67d9172690c0c4be3ef2d724')"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -1,6 +1,7 @@
|
|||
package cn.super12138.todo.constants
|
||||
|
||||
import cn.super12138.todo.utils.SPDelegates
|
||||
import cn.super12138.todo.utils.SPUtils
|
||||
|
||||
object GlobalValues {
|
||||
var dynamicColor: Boolean by SPDelegates(
|
||||
|
|
|
|||
Loading…
Reference in a new issue