Skip to content

Commit f8bd427

Browse files
juniorvansuitajuniorvansuita
authored andcommitted
gradle and java update
1 parent 546711a commit f8bd427

File tree

14 files changed

+28
-57
lines changed

14 files changed

+28
-57
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 2 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 0 additions & 12 deletions
This file was deleted.

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ android {
1919
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020
}
2121
}
22+
namespace 'com.vansuita.materialabout.sample'
2223
}
2324

2425
dependencies {

app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
xmlns:tools="http://schemas.android.com/tools"
4-
package="com.vansuita.materialabout.sample">
3+
xmlns:tools="http://schemas.android.com/tools">
54

65
<application
76
android:allowBackup="true"
@@ -14,7 +13,8 @@
1413

1514
<activity
1615
android:name=".act.ActivitySample"
17-
android:label="@string/app_name">
16+
android:label="@string/app_name"
17+
android:exported="true">
1818

1919
<intent-filter>
2020
<action android:name="android.intent.action.MAIN" />

app/src/main/java/com/vansuita/materialabout/sample/helper/SampleHelper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ public void loadAbout() {
5858
.addFacebookLink("user")
5959
.addTwitterLink("user")
6060
.addInstagramLink("jnrvans")
61-
.addGooglePlusLink("+JuniorVansuita")
6261
.addYoutubeChannelLink("CaseyNeistat")
6362
.addDribbbleLink("user")
6463
.addEmailLink("[email protected]")

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22

33
buildscript {
44
repositories {
5-
jcenter()
5+
mavenCentral()
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:4.1.3'
9+
classpath 'com.android.tools.build:gradle:7.2.1'
1010
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1111
}
1212
}
1313

1414
allprojects {
1515
repositories {
16-
jcenter()
16+
mavenCentral()
1717
maven { url "https://jitpack.io" }
1818
google()
1919
}
2020
}
2121

2222
ext {
23-
compileSdkVersion = 30
23+
compileSdkVersion = 31
2424
buildToolsVersion = '30.0.3'
2525
targetSdkVersion = compileSdkVersion
2626

27-
appcompatLibVersion = '1.2.0'
27+
appcompatLibVersion = '1.4.2'
2828
cardViewLibVersion = '1.0.0'
29-
materialLibVersion = '1.3.0'
29+
materialLibVersion = '1.6.1'
3030
iconHandlerVersion = 'v2.0.0'
3131
}
3232

0 commit comments

Comments
 (0)