Skip to content
This repository was archived by the owner on Oct 16, 2023. It is now read-only.

Commit 86f1406

Browse files
committed
TWA + androidx upgrade + release 1.2.0 🚀
1 parent adbfe21 commit 86f1406

File tree

8 files changed

+134
-30
lines changed

8 files changed

+134
-30
lines changed

.idea/codeStyles/Project.xml

+116
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+8-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+3-9
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ android {
66
applicationId "it.chicio.chiciocoding"
77
minSdkVersion 16
88
targetSdkVersion 28
9-
versionCode 4
10-
versionName "1.1.0"
9+
versionCode 5
10+
versionName "1.2.0"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {
@@ -25,11 +25,5 @@ android {
2525

2626
dependencies {
2727
implementation fileTree(include: ['*.jar'], dir: 'libs')
28-
implementation 'com.android.support:appcompat-v7:28.0.0'
29-
implementation 'com.android.support:support-media-compat:28.0.0'
30-
implementation 'com.android.support:support-v4:28.0.0'
31-
implementation 'com.github.GoogleChrome.custom-tabs-client:customtabs:7a2c1374a3'
32-
testImplementation 'junit:junit:4.12'
33-
androidTestImplementation 'com.android.support.test:runner:1.0.2'
34-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
28+
implementation 'com.google.androidbrowserhelper:androidbrowserhelper:1.1.0'
3529
}

app/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
android:resource="@string/asset_statements" />
1313
<activity
1414
android:theme="@style/AppTheme"
15-
android:name="android.support.customtabs.trusted.LauncherActivity">
15+
android:name="com.google.androidbrowserhelper.trusted.LauncherActivity">
1616
<meta-data
1717
android:name="android.support.customtabs.trusted.STATUS_BAR_COLOR"
1818
android:resource="@color/colorPrimary" />
@@ -41,7 +41,7 @@
4141
</intent-filter>
4242
</activity>
4343
<provider
44-
android:name="android.support.v4.content.FileProvider"
44+
android:name="androidx.core.content.FileProvider"
4545
android:authorities="it.chicio.twa.chiciocoding.fileprovider"
4646
android:grantUriPermissions="true"
4747
android:exported="false">

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55

66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.3.2'
8+
classpath 'com.android.tools.build:gradle:3.6.3'
99
}
1010
}
1111

gradle.properties

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,4 @@
1-
# Project-wide Gradle settings.
2-
# IDE (e.g. Android Studio) users:
3-
# Gradle settings configured through the IDE *will override*
4-
# any settings specified in this file.
5-
# For more details on how to configure your build environment visit
6-
# http://www.gradle.org/docs/current/userguide/build_environment.html
7-
# Specifies the JVM arguments used for the daemon process.
8-
# The setting is particularly useful for tweaking memory settings.
91
org.gradle.jvmargs=-Xmx1536m
10-
# When configured, Gradle will run in incubating parallel mode.
11-
# This option should only be used with decoupled projects. More details, visit
12-
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
13-
# org.gradle.parallel=true
2+
android.useAndroidX=true
143

154

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Apr 03 23:10:59 CEST 2019
1+
#Sat Apr 25 19:04:29 CEST 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

0 commit comments

Comments
 (0)