-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to newest Android with some adjustments
- Loading branch information
1 parent
a83e83c
commit b4c6917
Showing
98 changed files
with
2,393 additions
and
1,371 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,63 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 26 | ||
buildToolsVersion "26.0.3" | ||
compileSdk 34 | ||
|
||
defaultConfig { | ||
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" | ||
multiDexEnabled true | ||
applicationId "de.tobiasbielefeld.searchbar" | ||
minSdkVersion 14 | ||
targetSdkVersion 26 | ||
versionCode 10 | ||
versionName "1.2" | ||
minSdkVersion 21 | ||
targetSdkVersion 34 | ||
versionCode 11 | ||
versionName "2.0" | ||
|
||
vectorDrawables.useSupportLibrary = true | ||
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L" | ||
} | ||
|
||
androidResources { | ||
generateLocaleConfig true | ||
} | ||
|
||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
minifyEnabled true | ||
shrinkResources true | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
|
||
lintOptions { | ||
disable 'MissingTranslation' | ||
} | ||
} | ||
} | ||
|
||
|
||
compileOptions { | ||
encoding = 'UTF-8' | ||
sourceCompatibility "17" | ||
targetCompatibility JavaVersion.VERSION_17 | ||
} | ||
namespace 'de.tobiasbielefeld.searchbar' | ||
lint { | ||
abortOnError false | ||
disable 'MissingTranslation' | ||
} | ||
buildFeatures { | ||
buildConfig true | ||
viewBinding true | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:26.1.0' | ||
compile 'com.android.support:support-v4:26.1.0' | ||
compile 'com.android.support:cardview-v7:26.1.0' | ||
compile 'com.astuetz:pagerslidingtabstrip:1.0.1' | ||
compile 'com.android.support:support-vector-drawable:26.1.0' | ||
api 'com.google.android.material:material:1.12.0' | ||
implementation 'com.google.android.material:material:1.12.0' | ||
implementation 'androidx.preference:preference:1.2.1' | ||
implementation 'androidx.legacy:legacy-support-v4:1.0.0' | ||
implementation 'androidx.appcompat:appcompat:1.7.0' | ||
implementation 'androidx.cardview:cardview:1.0.0' | ||
implementation 'com.android.support:multidex:1.0.3' | ||
implementation 'com.github.yukuku:ambilwarna:2.0.1' | ||
implementation 'androidx.core:core:1.13.1' | ||
implementation 'androidx.gridlayout:gridlayout:1.0.0' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | ||
implementation 'androidx.navigation:navigation-fragment:2.7.7' | ||
implementation 'androidx.navigation:navigation-ui:2.7.7' | ||
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.7.0' | ||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 0 additions & 45 deletions
45
app/src/main/java/de/tobiasbielefeld/searchbar/MainApplication.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.