Skip to content

Commit

Permalink
Merge pull request #53 from Gridstone/ir/bump
Browse files Browse the repository at this point in the history
Bump dependencies for Android 12
  • Loading branch information
xxfast authored Apr 11, 2022
2 parents 0e848bb + 8952d48 commit 374069c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
buildscript {

ext.versions = [
'compile_sdk' : 29,
'compile_sdk' : 31,
'min_sdk' : 21,
'android_gradle_plugin' : '4.1.1',
'kotlin' : '1.4.21',
'kotlin' : '1.6.20',
'maven_publish_plugin' : '0.19.0',
'dokka' : '1.4.20',
'coroutines' : '1.4.2',
'coroutines' : '1.6.1',
'appcompat' : '1.2.0',
'androidx_core' : '1.3.2',
'drawerlayout' : '1.1.1',
'material' : '1.2.1',
'lifecycle' : '2.2.0',
'leakcanary' : '2.6',
'leakcanary' : '2.8.1',
'moshi' : '1.11.0',
'okhttp' : '4.9.0',
'retrofit' : '2.9.0',
Expand All @@ -24,7 +24,7 @@ buildscript {

repositories {
google()
jcenter()
mavenCentral()
}

dependencies {
Expand All @@ -44,7 +44,7 @@ apply plugin: 'org.jetbrains.changelog'
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}

group = GROUP
Expand Down
5 changes: 4 additions & 1 deletion sample-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@
tools:ignore="GoogleAppIndexingWarning"
>

<activity android:name=".MainActivity">
<activity
android:name=".MainActivity"
android:exported="true"
>

<intent-filter>

Expand Down
5 changes: 4 additions & 1 deletion simple-sample-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
tools:ignore="GoogleAppIndexingWarning"
>

<activity android:name=".MainActivity">
<activity
android:name=".MainActivity"
android:exported="true"
>

<intent-filter>

Expand Down

0 comments on commit 374069c

Please sign in to comment.