Alle Farben im Layout gesetzt, damit es bei SDK21+ nicht random ist Toolbar Text, Icon und die Color Buttons sind jetzt Schwarz wenn der Hintergrund hell ist und weiß wenn der hintergrund dunkel ist
47 lines
2.0 KiB
Groovy
47 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "at.smartshopper.smartshopperapp"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 19
|
|
versionName "5.0.2"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
implementation 'com.google.firebase:firebase-auth:16.2.0'
|
|
implementation 'com.google.firebase:firebase-messaging:17.5.0'
|
|
implementation 'com.google.firebase:firebase-core:16.0.8'
|
|
implementation 'com.google.firebase:firebase-storage:16.1.0'
|
|
implementation 'com.firebase:firebase-jobdispatcher:0.8.5'
|
|
implementation 'com.google.android.gms:play-services-auth:16.0.1'
|
|
implementation 'com.firebaseui:firebase-ui-auth:4.1.0'
|
|
implementation group: 'postgresql', name: 'postgresql', version: '9.1-901.jdbc4'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
implementation 'com.android.support:swiperefreshlayout:28.0.0'
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
implementation 'com.github.danielnilsson9:color-picker-view:1.4.0@aar'
|
|
implementation 'com.android.support:recyclerview-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'cz.msebera.android:httpclient:4.4.1.2'
|
|
implementation 'com.google.firebase:firebase-dynamic-links:16.1.8'
|
|
}
|