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 | < | ||
| 0 | 7 | < | \ No newline at end of file |
app/build.gradle
| 1 | 1 | apply plugin: 'com.android.application' | |
| 2 | 2 | ||
| 3 | 3 | android { | |
| 4 | - | compileSdkVersion 29 | |
| 4 | + | compileSdkVersion 33 | |
| 5 | 5 | defaultConfig { | |
| 6 | 6 | applicationId "eu.lepiller.nani" | |
| 7 | 7 | minSdkVersion 15 | |
| 8 | - | targetSdkVersion 29 | |
| 8 | + | targetSdkVersion 33 | |
| 9 | 9 | versionCode 12 | |
| 10 | 10 | versionName "0.4.0" | |
| 11 | 11 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | |
… | |||
| 20 | 20 | ||
| 21 | 21 | dependencies { | |
| 22 | 22 | 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' | |
| 25 | 25 | 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' | |
| 27 | 27 | implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" | |
| 28 | 28 | implementation "androidx.viewpager2:viewpager2:1.0.0" | |
| 29 | 29 | 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' | |
| 32 | 32 | implementation project(path: ':rubytextview') | |
| 33 | 33 | testImplementation 'junit:junit:4.12' | |
| 34 | 34 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' | |
app/src/main/AndroidManifest.xml
| 87 | 87 | <activity | |
| 88 | 88 | android:name=".MainActivity" | |
| 89 | 89 | android:label="@string/app_name" | |
| 90 | - | android:theme="@style/AppTheme.NoActionBar"> | |
| 90 | + | android:theme="@style/AppTheme.NoActionBar" | |
| 91 | + | android:exported="true"> | |
| 91 | 92 | <intent-filter> | |
| 92 | 93 | <action android:name="android.intent.action.MAIN" /> | |
| 93 | - | ||
| 94 | 94 | <category android:name="android.intent.category.LAUNCHER" /> | |
| 95 | 95 | </intent-filter> | |
| 96 | 96 | </activity> |
build.gradle
| 3 | 3 | buildscript { | |
| 4 | 4 | repositories { | |
| 5 | 5 | google() | |
| 6 | - | jcenter() | |
| 6 | + | mavenCentral() | |
| 7 | 7 | } | |
| 8 | 8 | dependencies { | |
| 9 | - | classpath 'com.android.tools.build:gradle:4.0.2' | |
| 9 | + | classpath 'com.android.tools.build:gradle:7.2.1' | |
| 10 | 10 | ||
| 11 | 11 | // NOTE: Do not place your application dependencies here; they belong | |
| 12 | 12 | // in the individual module build.gradle files | |
… | |||
| 16 | 16 | allprojects { | |
| 17 | 17 | repositories { | |
| 18 | 18 | google() | |
| 19 | - | jcenter() | |
| 19 | + | mavenCentral() | |
| 20 | 20 | } | |
| 21 | 21 | } | |
| 22 | 22 | ||
gradle/wrapper/gradle-wrapper.properties
| 1 | - | #Sat Jun 06 02:54:23 GMT 2020 | |
| 1 | + | #Sun Jun 19 16:22:17 GMT 2022 | |
| 2 | 2 | distributionBase=GRADLE_USER_HOME | |
| 3 | + | distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | |
| 3 | 4 | distributionPath=wrapper/dists | |
| 4 | - | zipStoreBase=GRADLE_USER_HOME | |
| 5 | 5 | zipStorePath=wrapper/dists | |
| 6 | - | distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip | |
| 6 | + | zipStoreBase=GRADLE_USER_HOME |
rubytextview/build.gradle
| 1 | 1 | apply plugin: 'com.android.library' | |
| 2 | 2 | ||
| 3 | 3 | android { | |
| 4 | - | compileSdkVersion 29 | |
| 5 | - | buildToolsVersion "29.0.3" | |
| 4 | + | compileSdkVersion 33 | |
| 6 | 5 | ||
| 7 | 6 | defaultConfig { | |
| 8 | 7 | minSdkVersion 15 | |
| 9 | - | targetSdkVersion 29 | |
| 8 | + | targetSdkVersion 33 | |
| 10 | 9 | versionCode 1 | |
| 11 | 10 | versionName "1.0" | |
| 12 | 11 | ||
… | |||
| 24 | 23 | ||
| 25 | 24 | dependencies { | |
| 26 | 25 | implementation fileTree(dir: "libs", include: ["*.jar"]) | |
| 27 | - | implementation 'androidx.appcompat:appcompat:1.3.1' | |
| 26 | + | implementation 'androidx.appcompat:appcompat:1.4.2' | |
| 28 | 27 | testImplementation 'junit:junit:4.12' | |
| 29 | 28 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' | |
| 30 | 29 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' | |