mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-06-05 21:59:17 +02:00
adding Room
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
apply plugin: 'kotlin-android-extensions'
|
apply plugin: 'kotlin-android-extensions'
|
||||||
|
apply plugin: 'kotlin-kapt'
|
||||||
|
|
||||||
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
def keystorePropertiesFile = rootProject.file("keystore.properties")
|
||||||
def keystoreProperties = new Properties()
|
def keystoreProperties = new Properties()
|
||||||
@@ -54,4 +55,8 @@ dependencies {
|
|||||||
implementation 'com.simplemobiletools:commons:5.3.15'
|
implementation 'com.simplemobiletools:commons:5.3.15'
|
||||||
implementation 'joda-time:joda-time:2.10.1'
|
implementation 'joda-time:joda-time:2.10.1'
|
||||||
implementation 'androidx.multidex:multidex:2.0.0'
|
implementation 'androidx.multidex:multidex:2.0.0'
|
||||||
|
|
||||||
|
kapt 'androidx.room:room-compiler:2.0.0'
|
||||||
|
implementation 'androidx.room:room-runtime:2.0.0'
|
||||||
|
annotationProcessor 'androidx.room:room-compiler:2.0.0'
|
||||||
}
|
}
|
||||||
|
@@ -52,9 +52,9 @@ class EventActivity : SimpleActivity() {
|
|||||||
private var mEventCalendarId = STORED_LOCALLY_ONLY
|
private var mEventCalendarId = STORED_LOCALLY_ONLY
|
||||||
private var wasActivityInitialized = false
|
private var wasActivityInitialized = false
|
||||||
|
|
||||||
lateinit private var mEventStartDateTime: DateTime
|
private lateinit var mEventStartDateTime: DateTime
|
||||||
lateinit private var mEventEndDateTime: DateTime
|
private lateinit var mEventEndDateTime: DateTime
|
||||||
lateinit private var mEvent: Event
|
private lateinit var mEvent: Event
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
Reference in New Issue
Block a user