commit
5683d75162
|
@ -9,7 +9,9 @@ import javax.inject.Inject
|
|||
class DismissNotificationService : DaggerIntentService(DismissNotificationService::class.simpleName) {
|
||||
@Inject lateinit var rxBus: RxBusWrapper
|
||||
|
||||
override fun onHandleIntent(intent: Intent) {
|
||||
rxBus.send(EventDismissNotification(intent.getIntExtra("alertID", -1)))
|
||||
override fun onHandleIntent(intent: Intent?) {
|
||||
intent?.let {
|
||||
rxBus.send(EventDismissNotification(intent.getIntExtra("alertID", -1)))
|
||||
}
|
||||
}
|
||||
}
|
|
@ -10,6 +10,12 @@ android {
|
|||
targetSdkVersion 28
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
kapt {
|
||||
arguments {
|
||||
arg("room.incremental", "true")
|
||||
arg("room.schemaLocation", "$projectDir/schemas")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
|
@ -45,6 +51,8 @@ dependencies {
|
|||
|
||||
api "androidx.room:room-runtime:$room_version"
|
||||
kapt "androidx.room:room-compiler:$room_version"
|
||||
/* Database schema export */
|
||||
kapt "android.arch.persistence.room:compiler:$room_version"
|
||||
implementation "androidx.room:room-ktx:$room_version"
|
||||
implementation "androidx.room:room-rxjava2:$room_version"
|
||||
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -14,7 +14,7 @@ const val DATABASE_VERSION = 1
|
|||
@Database(version = DATABASE_VERSION, entities = arrayOf(APSResult::class, Bolus::class, BolusCalculatorResult::class, Carbs::class,
|
||||
EffectiveProfileSwitch::class, ExtendedBolus::class, GlucoseValue::class, ProfileSwitch::class,
|
||||
TemporaryBasal::class, TemporaryTarget::class, TherapyEvent::class, TotalDailyDose::class,
|
||||
APSResultLink::class, MealLink::class, MultiwaveBolusLink::class, PreferenceChange::class, VersionChange::class))
|
||||
APSResultLink::class, MealLink::class, MultiwaveBolusLink::class, PreferenceChange::class, VersionChange::class), exportSchema = true)
|
||||
@TypeConverters(Converters::class)
|
||||
internal abstract class AppDatabase : RoomDatabase() {
|
||||
|
||||
|
|
Loading…
Reference in a new issue