Update build environment

Julien LepillerSun Jun 19 18:31:49+0200 2022

2002263

Update build environment

.idea/compiler.xml unknown status 1

1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project version="4">
3+
  <component name="CompilerConfiguration">
4+
    <bytecodeTargetLevel target="11" />
5+
  </component>
6+
</project>
6<
07<
\ No newline at end of file

app/build.gradle

11
apply plugin: 'com.android.application'
22
33
android {
4-
    compileSdkVersion 29
4+
    compileSdkVersion 33
55
    defaultConfig {
66
        applicationId "eu.lepiller.nani"
77
        minSdkVersion 15
8-
        targetSdkVersion 29
8+
        targetSdkVersion 33
99
        versionCode 12
1010
        versionName "0.4.0"
1111
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

2020
2121
dependencies {
2222
    implementation fileTree(dir: 'libs', include: ['*.jar'])
23-
    implementation 'androidx.appcompat:appcompat:1.3.1'
24-
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
23+
    implementation 'androidx.appcompat:appcompat:1.4.2'
24+
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
2525
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
26-
    implementation 'androidx.preference:preference:1.1.1'
26+
    implementation 'androidx.preference:preference:1.2.0'
2727
    implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
2828
    implementation "androidx.viewpager2:viewpager2:1.0.0"
2929
    implementation 'com.andree-surya:moji4j:1.0.0'
30-
    implementation 'com.google.android:flexbox:2.0.1'
31-
    implementation 'com.google.android.material:material:1.4.0'
30+
    implementation 'com.google.android.flexbox:flexbox:3.0.0'
31+
    implementation 'com.google.android.material:material:1.6.1'
3232
    implementation project(path: ':rubytextview')
3333
    testImplementation 'junit:junit:4.12'
3434
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'

app/src/main/AndroidManifest.xml

8787
        <activity
8888
            android:name=".MainActivity"
8989
            android:label="@string/app_name"
90-
            android:theme="@style/AppTheme.NoActionBar">
90+
            android:theme="@style/AppTheme.NoActionBar"
91+
                android:exported="true">
9192
            <intent-filter>
9293
                <action android:name="android.intent.action.MAIN" />
93-
9494
                <category android:name="android.intent.category.LAUNCHER" />
9595
            </intent-filter>
9696
        </activity>

build.gradle

33
buildscript {
44
    repositories {
55
        google()
6-
        jcenter()
6+
        mavenCentral()
77
    }
88
    dependencies {
9-
        classpath 'com.android.tools.build:gradle:4.0.2'
9+
        classpath 'com.android.tools.build:gradle:7.2.1'
1010
1111
        // NOTE: Do not place your application dependencies here; they belong
1212
        // in the individual module build.gradle files

1616
allprojects {
1717
    repositories {
1818
        google()
19-
        jcenter()
19+
        mavenCentral()
2020
    }
2121
}
2222

gradle/wrapper/gradle-wrapper.properties

1-
#Sat Jun 06 02:54:23 GMT 2020
1+
#Sun Jun 19 16:22:17 GMT 2022
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

rubytextview/build.gradle

11
apply plugin: 'com.android.library'
22
33
android {
4-
    compileSdkVersion 29
5-
    buildToolsVersion "29.0.3"
4+
    compileSdkVersion 33
65
76
    defaultConfig {
87
        minSdkVersion 15
9-
        targetSdkVersion 29
8+
        targetSdkVersion 33
109
        versionCode 1
1110
        versionName "1.0"
1211

2423
2524
dependencies {
2625
    implementation fileTree(dir: "libs", include: ["*.jar"])
27-
    implementation 'androidx.appcompat:appcompat:1.3.1'
26+
    implementation 'androidx.appcompat:appcompat:1.4.2'
2827
    testImplementation 'junit:junit:4.12'
2928
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
3029
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'