Add black theme (#726)
* Add black theme On amoled screens a completely black theme helps save battery, besides looking awesome! * Fix first set of merge request issues except the dialog. * Black theme inherits from dark and only the different values are declared * Make nav bar translucent (for some reason content does not go behind it in main activity. Need to investigate) * Remove nav bar line * Fix toolbar color * Fix dialog issue with black theme. Revert translucent navigation. * Translations updated, as well as possible from online sources. * Make login screen respect black theme
This commit is contained in:
parent
6fcb3cb495
commit
562beacfc1
29 changed files with 94 additions and 10 deletions
|
@ -93,31 +93,25 @@ dependencies {
|
|||
// EmojiCompat
|
||||
implementation "com.android.support:support-emoji:$supportLibraryVersion"
|
||||
implementation "com.android.support:support-emoji-appcompat:$supportLibraryVersion"
|
||||
implementation "de.c1710:filemojicompat:1.0.14"
|
||||
implementation 'de.c1710:filemojicompat:1.0.14'
|
||||
// architecture components
|
||||
implementation 'android.arch.lifecycle:extensions:1.1.1'
|
||||
//room
|
||||
implementation 'android.arch.persistence.room:runtime:1.1.1'
|
||||
kapt 'android.arch.persistence.room:compiler:1.1.1'
|
||||
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
|
||||
testImplementation 'junit:junit:4.12'
|
||||
|
||||
implementation "com.google.dagger:dagger:$daggerVersion"
|
||||
kapt "com.google.dagger:dagger-compiler:$daggerVersion"
|
||||
implementation "com.google.dagger:dagger-android:$daggerVersion"
|
||||
implementation "com.google.dagger:dagger-android-support:$daggerVersion"
|
||||
kapt "com.google.dagger:dagger-android-processor:$daggerVersion"
|
||||
|
||||
testImplementation "org.robolectric:robolectric:3.8"
|
||||
testImplementation "org.mockito:mockito-inline:2.19.1"
|
||||
testImplementation 'org.robolectric:robolectric:3.8'
|
||||
testImplementation 'org.mockito:mockito-inline:2.19.1'
|
||||
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
|
||||
exclude group: 'com.android.support', module: 'support-annotations'
|
||||
})
|
||||
|
||||
debugImplementation 'im.dino:dbinspector:3.4.1@aar'
|
||||
|
||||
implementation 'io.reactivex.rxjava2:rxjava:2.1.16'
|
||||
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
|
||||
implementation 'com.uber.autodispose:autodispose-android-archcomponents:0.8.0'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue