Skip to content

Commit 67867a2

Browse files
committed
+ bump SDK version
1 parent af9b3ff commit 67867a2

File tree

12 files changed

+64
-28
lines changed

12 files changed

+64
-28
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 & 2 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: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/php.xml

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

app/build.gradle

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1+
repositories {
2+
mavenCentral()
3+
}
14
apply plugin: 'com.android.application'
25

36
android {
4-
compileSdkVersion 29
5-
buildToolsVersion "29.0.3"
6-
7+
//compileSdkVersion 31
8+
compileSdk 33
79
defaultConfig {
810
applicationId "dev.favier.exam1radioamateur"
911
minSdkVersion 22
10-
targetSdkVersion 29
11-
versionCode 9
12-
versionName 'v0.9-beta'
12+
targetSdkVersion 33
13+
versionCode 11
14+
versionName 'v0.11-beta'
1315

1416
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1517
}
@@ -23,24 +25,25 @@ android {
2325
resValue("string", "DB_PASSWORD_PERSON", "pass")
2426
}*/
2527
}
28+
namespace 'dev.favier.exam1radioamateur'
2629
}
2730

2831

2932
dependencies {
3033
implementation fileTree(dir: 'libs', include: ['*.jar'])
3134

3235
//debugImplementation 'com.amitshekhar.android:debug-db:1.0.6'
33-
def room_version = "2.2.5"
36+
def room_version = '2.5.0'
3437
implementation 'com.google.android:flexbox:2.0.1'
35-
implementation 'androidx.appcompat:appcompat:1.1.0'
36-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
37-
testImplementation 'junit:junit:4.12'
38-
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
39-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
38+
implementation 'androidx.appcompat:appcompat:1.6.0'
39+
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
40+
testImplementation 'junit:junit:4.13.2'
41+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
42+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
4043
implementation "androidx.cardview:cardview:1.0.0"
4144
implementation "androidx.room:room-runtime:$room_version"
4245
annotationProcessor "androidx.room:room-compiler:$room_version"
43-
implementation 'com.google.code.gson:gson:2.8.6'
46+
implementation 'com.google.code.gson:gson:2.9.0'
4447

4548
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
4649

app/src/main/AndroidManifest.xml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="dev.favier.exam1radioamateur"
43
android:installLocation="auto">
54

65
<uses-permission android:name="android.permission.INTERNET"/>
@@ -13,41 +12,47 @@
1312
android:supportsRtl="true"
1413
android:theme="@style/AppTheme"
1514
>
16-
<activity android:name=".CoursViewer">
15+
<activity android:name=".CoursViewer" android:exported="false">
1716
</activity>
1817
<activity android:name=".QuestionsDownload"
19-
android:configChanges="keyboardHidden|orientation|screenSize">
18+
android:configChanges="keyboardHidden|orientation|screenSize"
19+
android:exported="false">
2020
</activity>
2121
<activity
2222
android:name=".QuestionViewer"
2323
android:label="@string/question"
2424
android:configChanges="keyboardHidden|orientation|screenSize"
25+
android:exported="false"
2526
/>
2627
<activity
2728
android:name=".ExamenResults"
2829
android:label="@string/resultats"
29-
android:configChanges="keyboardHidden|orientation|screenSize">
30+
android:configChanges="keyboardHidden|orientation|screenSize"
31+
android:exported="false">
3032

3133
</activity>
3234
<activity
3335
android:name=".OpenSource"
34-
android:label="@string/opensource">
36+
android:label="@string/opensource"
37+
android:exported="false">
3538
<meta-data
3639
android:name="android.support.PARENT_ACTIVITY"
3740
android:value=".MainActivity"/>
3841
</activity>
3942
<activity
4043
android:name=".Remerciements"
41-
android:label="@string/remerciement">
44+
android:label="@string/remerciement"
45+
android:exported="false">
4246
<meta-data
4347
android:name="android.support.PARENT_ACTIVITY"
4448
android:value=".MainActivity"/>
4549
</activity>
4650
<activity android:name=".ExamenActivity"
4751
android:configChanges="keyboardHidden|orientation|screenSize"
52+
android:exported="false"
4853
>
4954
</activity>
50-
<activity android:name=".MainActivity">
55+
<activity android:name=".MainActivity" android:exported="true">
5156
<intent-filter>
5257
<action android:name="android.intent.action.MAIN"/>
5358

app/src/main/res/layout/activity_main.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -366,6 +366,7 @@
366366
android:layout_height="match_parent"/>
367367
</TableLayout>
368368
</androidx.cardview.widget.CardView>
369+
369370
<androidx.cardview.widget.CardView
370371
android:layout_width="match_parent"
371372
android:layout_height="match_parent" android:layout_marginTop="5sp" android:paddingBottom="2sp"

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
<string name="gotoVideo">vidéos de F6KGL</string>
146146

147147
<string name="newVersion">Nouveautés de la version</string>
148-
<string name="nouvautés">* Maj de la base de question\n* Suppression du point négatif
148+
<string name="nouvautés">* Maj de la base de question\n* MAJ du SDK Android
149149
</string>
150150

151151
<string name="htmlCours">Cour HTML</string>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.1.3'
11+
classpath 'com.android.tools.build:gradle:7.3.0'
1212

1313

1414
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)