Skip to content

Commit 8c2387b

Browse files
committedApr 22, 2020
Upgrade project libraries
1 parent 0cd23ba commit 8c2387b

File tree

4 files changed

+30
-26
lines changed

4 files changed

+30
-26
lines changed
 

‎app/src/main/AndroidManifest.xml

+19-18
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,25 @@
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="erikjhordanrey.android_kotlin_devises">
44

5-
<uses-permission android:name="android.permission.INTERNET"/>
6-
<application
7-
android:name=".di.CurrencyApplication"
8-
android:allowBackup="true"
9-
android:icon="@mipmap/ic_launcher"
10-
android:label="@string/app_name"
11-
android:supportsRtl="true"
12-
android:theme="@style/AppTheme">
13-
<activity
14-
android:name=".view.NavigationActivity"
15-
android:label="@string/app_name">
16-
<intent-filter>
17-
<action android:name="android.intent.action.MAIN"/>
5+
<uses-permission android:name="android.permission.INTERNET" />
6+
<application
7+
android:name=".di.CurrencyApplication"
8+
android:allowBackup="true"
9+
android:icon="@mipmap/ic_launcher"
10+
android:label="@string/app_name"
11+
android:supportsRtl="true"
12+
android:theme="@style/AppTheme"
13+
android:usesCleartextTraffic="true">
14+
<activity
15+
android:name=".view.NavigationActivity"
16+
android:label="@string/app_name">
17+
<intent-filter>
18+
<action android:name="android.intent.action.MAIN" />
1819

19-
<category android:name="android.intent.category.LAUNCHER"/>
20-
</intent-filter>
21-
</activity>
20+
<category android:name="android.intent.category.LAUNCHER" />
21+
</intent-filter>
22+
</activity>
2223

23-
</application>
24+
</application>
2425

25-
</manifest>
26+
</manifest>

‎build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ buildscript {
44
'compileSdk' : 28,
55
'minSdk' : 15,
66
'targetSdk' : 28,
7-
'androidGradle' : '3.4.0',
8-
'androidx' : '1.0.0',
7+
'androidGradle' : '3.6.3',
8+
'androidx' : '1.1.0',
99
'androidxAppcompat': '1.0.2',
10-
'lifecycle' : '2.0.0',
11-
'persistence' : '2.0.0',
12-
'material' : '1.0.0',
10+
'lifecycle' : '2.2.0',
11+
'persistence' : '2.2.5',
12+
'material' : '1.1.0',
1313
'rxAndroid' : '2.1.1',
1414
'rxJava' : '2.2.8',
1515
'dagger' : '2.22.1',
1616
'retrofit' : '2.5.0',
1717
'okhttp' : '3.12.0',
18-
'kotlin' : '1.3.30'
18+
'kotlin' : '1.3.71'
1919
]
2020

2121
repositories {

‎gradle.properties

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@ org.gradle.jvmargs=-Xmx1536m
1515
# This option should only be used with decoupled projects. More details, visit
1616
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1717
# org.gradle.parallel=true
18+
# AndroidX
19+
android.useAndroidX=true
20+
android.enableJetifier=true
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Apr 24 11:47:35 CDT 2019
1+
#Tue Apr 21 20:16:26 CDT 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-5.1.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

0 commit comments

Comments
 (0)