diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-09-12 06:58:07 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-09-12 06:58:07 +0000 |
commit | 52ee70a57e988eb1cd3c6018a954278323e523ce (patch) | |
tree | 047f795a628d53d6d60dba506aff2c5c32102e6e /app/build.gradle | |
parent | fc1b1ae58546861edd8f745fee9e807a13d8629a (diff) | |
download | infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar.gz infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar.bz2 infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar.lz infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar.xz infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.tar.zst infinity-for-reddit-52ee70a57e988eb1cd3c6018a954278323e523ce.zip |
Fix Immersive Interface on Android R. Set targetSdkVersion and compileSdkVersion to 30.
Diffstat (limited to '')
-rw-r--r-- | app/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0b2364f9..a5656d80 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,11 +1,11 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 29 + compileSdkVersion 30 defaultConfig { applicationId "ml.docilealligator.infinityforreddit" minSdkVersion 21 - targetSdkVersion 29 + targetSdkVersion 30 versionCode 43 versionName "4.0.7" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |