future prep

This commit is contained in:
Thibault Deckers 2021-02-22 20:58:28 +09:00
parent a29cc971b2
commit d383eeb565
2 changed files with 5 additions and 0 deletions

View file

@ -44,6 +44,7 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true">
<!-- TODO TLAD Android 12 https://developer.android.com/about/versions/12/behavior-changes-12#exported -->
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"

View file

@ -3,6 +3,8 @@ buildscript {
ext.kotlin_version = '1.4.30'
repositories {
google()
mavenCentral()
// TODO TLAD remove jcenter (migrating to mavenCentral) when this is fixed: https://youtrack.jetbrains.com/issue/IDEA-261387
jcenter()
}
dependencies {
@ -17,6 +19,8 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
// TODO TLAD remove jcenter (migrating to mavenCentral) when this is fixed: https://youtrack.jetbrains.com/issue/IDEA-261387
jcenter()
}
// gradle.projectsEvaluated {