File tree 12 files changed +43
-34
lines changed
12 files changed +43
-34
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- xmlns : tools =" http://schemas.android.com/tools"
4
- package =" com.bumptech.glide.benchmark" >
2
+ <manifest package =" com.bumptech.glide.benchmark" >
5
3
<application />
6
4
</manifest >
Original file line number Diff line number Diff line change @@ -34,14 +34,14 @@ TEST_JVM_MEMORY_SIZE=4096M
34
34
35
35
# # Glide versioning
36
36
VERSION_MAJOR =4
37
- VERSION_MINOR =14
37
+ VERSION_MINOR =16
38
38
VERSION_PATCH =0
39
39
VERSION_NAME =4.14.0-SNAPSHOT
40
40
41
41
# # SDK versioning
42
- COMPILE_SDK_VERSION =29
42
+ COMPILE_SDK_VERSION =32
43
43
MIN_SDK_VERSION =14
44
- TARGET_SDK_VERSION =28
44
+ TARGET_SDK_VERSION =32
45
45
46
46
# # AndroidX versions
47
47
ANDROID_X_ANNOTATION_VERSION =1.3.0
@@ -53,10 +53,10 @@ ANDROID_X_CORE_VERSION=1.6.0
53
53
ANDROID_X_EXIF_INTERFACE_VERSION =1.3.3
54
54
ANDROID_X_FRAGMENT_VERSION =1.3.6
55
55
ANDROID_X_RECYCLERVIEW_VERSION =1.2.1
56
- ANDROID_X_TEST_CORE_VERSION =1.3 .0
57
- ANDROID_X_TEST_JUNIT_VERSION =1.1.0
58
- ANDROID_X_TEST_RULES_VERSION =1.1 .0
59
- ANDROID_X_TEST_RUNNER_VERSION =1.1 .0
56
+ ANDROID_X_TEST_CORE_VERSION =1.4 .0
57
+ ANDROID_X_TEST_JUNIT_VERSION =1.1.3
58
+ ANDROID_X_TEST_RULES_VERSION =1.4 .0
59
+ ANDROID_X_TEST_RUNNER_VERSION =1.4 .0
60
60
ANDROID_X_TRACING_VERSION =1.0.0
61
61
ANDROID_X_VECTOR_DRAWABLE_ANIMATED_VERSION =1.1.0
62
62
ANDROID_X_CORE_KTX_VERSION =1.8.0
@@ -85,7 +85,7 @@ MOCKITO_VERSION=2.24.0
85
85
MOCKWEBSERVER_VERSION =3.0.0-RC1
86
86
OK_HTTP_VERSION =3.10.0
87
87
PMD_VERSION =6.0.0
88
- ROBOLECTRIC_VERSION =4.3 .1
88
+ ROBOLECTRIC_VERSION =4.8 .1
89
89
TRUTH_VERSION =0.45
90
90
VIOLATIONS_PLUGIN_VERSION =1.8
91
91
VOLLEY_VERSION =1.2.0
Original file line number Diff line number Diff line change @@ -26,20 +26,20 @@ dependencies {
26
26
}
27
27
28
28
android {
29
- compileSdk COMPILE_SDK_VERSION as int
29
+ compileSdk 30 as int
30
30
31
31
defaultConfig {
32
32
applicationId ' com.bumptech.glide.instrumentation'
33
- minSdk 16 as int
33
+ minSdk MIN_SDK_VERSION as int
34
34
targetSdk TARGET_SDK_VERSION as int
35
35
versionCode 1
36
36
versionName ' 1.0'
37
37
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
38
38
}
39
39
40
40
compileOptions {
41
- sourceCompatibility JavaVersion . VERSION_1_7
42
- targetCompatibility JavaVersion . VERSION_1_7
41
+ sourceCompatibility JavaVersion . VERSION_11
42
+ targetCompatibility JavaVersion . VERSION_11
43
43
}
44
44
}
45
45
Original file line number Diff line number Diff line change 1
1
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
2
- package =" com.bumptech.glide.instrumentation" >
3
- <uses-permission android : name =" android.permission.WRITE_EXTERNAL_STORAGE" />
2
+ xmlns : tools =" http://schemas.android.com/tools"
3
+ package =" com.bumptech.glide.instrumentation" >
4
+ <!-- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />-->
4
5
<uses-permission android : name =" android.permission.SYSTEM_ALERT_WINDOW" />
5
- <application >
6
- <activity android : name =" com.bumptech.glide.test.GlideWithBeforeSuperOnCreateActivity" />
7
- <activity android : name =" com.bumptech.glide.test.GlideWithAsDifferentSupertypesActivity" />
6
+ <application tools : ignore =" MissingApplicationIcon" >
7
+ <activity
8
+ android : name =" com.bumptech.glide.test.GlideWithBeforeSuperOnCreateActivity"
9
+ android : exported =" false" />
10
+ <activity
11
+ android : name =" com.bumptech.glide.test.GlideWithAsDifferentSupertypesActivity"
12
+ android : exported =" false"
13
+ />
8
14
</application >
9
15
</manifest >
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
- <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
- package =" com.bumptech.glide" >
2
+ <manifest package =" com.bumptech.glide" >
4
3
<application />
5
4
</manifest >
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ android {
47
47
}
48
48
49
49
compileOptions {
50
- sourceCompatibility JavaVersion . VERSION_1_7
51
- targetCompatibility JavaVersion . VERSION_1_7
50
+ sourceCompatibility JavaVersion . VERSION_11
51
+ targetCompatibility JavaVersion . VERSION_11
52
52
}
53
53
54
54
testOptions. unitTests. includeAndroidResources = true
Original file line number Diff line number Diff line change 11
11
android : theme =" @style/Theme.AppCompat" >
12
12
<activity
13
13
android : name =" .MainActivity"
14
- android : label = " @string/app_name " >
14
+ android : exported = " true " >
15
15
<intent-filter >
16
16
<action android : name =" android.intent.action.MAIN" />
17
17
<category android : name =" android.intent.category.LAUNCHER" />
Original file line number Diff line number Diff line change 20
20
21
21
<activity
22
22
android : name =" .FlickrSearchActivity"
23
- android : label = " @string/app_name "
23
+ android : exported = " true "
24
24
android : launchMode =" singleTask"
25
25
android : windowSoftInputMode =" stateHidden|adjustResize" >
26
26
<intent-filter >
29
29
</intent-filter >
30
30
</activity >
31
31
32
- <activity android : name =" .FullscreenActivity" />
32
+ <activity
33
+ android : exported =" false"
34
+ android : name =" .FullscreenActivity" />
33
35
</application >
34
36
</manifest >
Original file line number Diff line number Diff line change 17
17
android : theme =" @style/AppTheme" >
18
18
<activity
19
19
android : name =" .MainActivity"
20
- android : label = " @string/app_name " >
20
+ android : exported = " true " >
21
21
<intent-filter >
22
22
<action android : name =" android.intent.action.MAIN" />
23
23
24
24
<category android : name =" android.intent.category.LAUNCHER" />
25
25
</intent-filter >
26
26
</activity >
27
- <activity android : name =" .FullscreenActivity" />
27
+ <activity
28
+ android : exported =" false"
29
+ android : name =" .FullscreenActivity" />
28
30
</application >
29
31
</manifest >
Original file line number Diff line number Diff line change 18
18
android : networkSecurityConfig =" @xml/network_security_config"
19
19
android : name =" com.bumptech.glide.samples.imgur.ImgurApplication"
20
20
tools : targetApi =" n" >
21
- <activity android : name =" com.bumptech.glide.samples.imgur.MainActivity" >
21
+ <activity
22
+ android : exported =" true"
23
+ android : name =" com.bumptech.glide.samples.imgur.MainActivity" >
22
24
<intent-filter >
23
25
<action android : name =" android.intent.action.MAIN" />
24
26
<category android : name =" android.intent.category.LAUNCHER" />
Original file line number Diff line number Diff line change 9
9
android : icon =" @android:drawable/sym_def_app_icon"
10
10
android : label =" @string/app_name" >
11
11
<activity
12
- android : name = " .MainActivity "
13
- android : label = " @string/app_name " >
12
+ android : exported = " true "
13
+ android : name = " .MainActivity " >
14
14
<intent-filter >
15
15
<action android : name =" android.intent.action.MAIN" />
16
16
<category android : name =" android.intent.category.LAUNCHER" />
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ android {
18
18
}
19
19
20
20
compileOptions {
21
- sourceCompatibility JavaVersion . VERSION_1_7
22
- targetCompatibility JavaVersion . VERSION_1_7
21
+ sourceCompatibility JavaVersion . VERSION_11
22
+ targetCompatibility JavaVersion . VERSION_11
23
23
}
24
24
}
You can’t perform that action at this time.
0 commit comments