Skip to content

Commit

Permalink
Floating dialog update
Browse files Browse the repository at this point in the history
+ added floating dialog for low-end devices.
+ moved to ViewBinding
+ some other bug fixes
  • Loading branch information
AwaisKing committed Sep 18, 2021
1 parent 486c19a commit 19c14e6
Show file tree
Hide file tree
Showing 50 changed files with 1,776 additions and 687 deletions.
61 changes: 61 additions & 0 deletions .idea/runConfigurations/app.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 17 additions & 13 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,34 @@ plugins {
id 'com.google.firebase.crashlytics'
}

def sdkVersion = 31 // todo make 31
android {
compileSdk 30
compileSdk sdkVersion

defaultConfig {
applicationId 'awais.backworddictionary'

minSdk 16
targetSdk 30
targetSdk sdkVersion

versionCode 116
versionName '11.6'
versionCode 117
versionName '11.7'

multiDexEnabled true

vectorDrawables.useSupportLibrary true
vectorDrawables.generatedDensities = []

// useLibrary 'org.apache.http.legacy'
vectorDrawables {
useSupportLibrary true
generatedDensities = []
}
}

buildFeatures { viewBinding true }

aaptOptions { additionalParameters '--no-version-vectors' }

compileOptions {
targetCompatibility JavaVersion.VERSION_1_9
sourceCompatibility JavaVersion.VERSION_1_9
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}

buildTypes {
Expand Down Expand Up @@ -75,13 +78,14 @@ allprojects {
}

dependencies {
implementation('androidx.multidex:multidex:2.0.1@aar') { transitive true }
implementation('androidx.recyclerview:recyclerview:1.2.1@aar') { transitive true }
implementation('androidx.appcompat:appcompat:1.4.0-alpha03@aar') { transitive true }
implementation('com.google.android.material:material:1.5.0-alpha01@aar') { transitive true }
implementation('com.google.android.material:material:1.5.0-alpha03@aar') { transitive true }

implementation 'com.google.android.gms:play-services-ads:20.2.0'
implementation 'com.google.android.gms:play-services-ads:20.3.0'

implementation platform('com.google.firebase:firebase-bom:28.2.1')
implementation platform('com.google.firebase:firebase-bom:28.4.1')
implementation 'com.google.firebase:firebase-core'
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-crashlytics'
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
android:documentLaunchMode="intoExisting"
android:exported="true"
android:imeOptions="flagNoExtractUi|actionSearch"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:maxRecents="1"
android:resizeableActivity="true"
Expand All @@ -68,6 +67,7 @@
android:finishOnTaskLaunch="true"
android:launchMode="singleTop"
android:maxRecents="1"
android:noHistory="true"
android:theme="@style/AppTheme.CompletelyTransparent">

<!-- Filter for Bubbles API -->
Expand Down
Loading

0 comments on commit 19c14e6

Please sign in to comment.