Skip to content

Commit 57af1e4

Browse files
authored
Updating Target SDK (#398)
API Versions.
1 parent 1b580d2 commit 57af1e4

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

.github/workflows/ci-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
APP_SECRET: ${{ secrets.APP_SECRET }}
4040
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
4141
run: ./generate-ci-auth-file
42-
- name: Run examples
42+
- name: Run Examples
4343
run: ./scripts/run-examples $(find `pwd` -name auth_output)

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
REFRESH_TOKEN: ${{ secrets.REFRESH_TOKEN }}
4444
run: ./generate-ci-auth-file
4545

46-
- name: Run examples
46+
- name: Run Integration Tests
4747
run: ./scripts/run-integration-tests $(find `pwd` -name auth_output)
4848

4949
- name: Upload Artifacts

examples/DropboxAndroid/gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1212
org.gradle.parallel=true
1313
android.useAndroidX=true
14-
org.gradle.unsafe.configuration-cache=false

examples/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ allprojects {
2020
}
2121

2222
android {
23-
compileSdkVersion 30
23+
compileSdkVersion 31
2424
buildToolsVersion "30.0.3"
2525

2626
defaultConfig {
2727
applicationId "com.dropbox.core.examples.android"
2828
minSdkVersion 19
29-
targetSdkVersion 28
29+
targetSdkVersion 30
3030
versionCode 1
3131
versionName "1.0"
3232
}

examples/android/src/main/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
android:supportsRtl="false">
1515
<activity
1616
android:name=".UserActivity"
17+
android:exported="true"
1718
android:label="@string/app_name">
1819
<intent-filter>
1920
<action android:name="android.intent.action.MAIN" />
@@ -22,9 +23,11 @@
2223
</activity>
2324
<activity
2425
android:name=".FilesActivity"
26+
android:exported="false"
2527
android:label="@string/title_activity_files" />
2628
<activity
2729
android:name="com.dropbox.core.android.AuthActivity"
30+
android:exported="true"
2831
android:configChanges="orientation|keyboard"
2932
android:launchMode="singleTask">
3033
<intent-filter>
@@ -40,6 +43,7 @@
4043
</activity>
4144
<activity
4245
android:name=".internal.OpenWithActivity"
46+
android:exported="true"
4347
android:label="@string/title_activity_openwith">
4448
<intent-filter>
4549
<action android:name="com.dropbox.android.intent.action.DBXC_EDIT"/>

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ POM_DEVELOPER_ID = dropbox-api-team
1919
POM_DEVELOPER_NAME = Dropbox API Team
2020
POM_DEVELOPER_URL = https://github.com/dropbox/
2121
POM_DEVELOPER_EMAIL = api-support@dropbox.com
22+
23+
# Disable Configuration Cache until we test it in this project
24+
org.gradle.unsafe.configuration-cache=false

0 commit comments

Comments
 (0)