File tree Expand file tree Collapse file tree 6 files changed +11
-5
lines changed
Expand file tree Collapse file tree 6 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1111# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1212org.gradle.parallel =true
1313android.useAndroidX =true
14- org.gradle.unsafe.configuration-cache =false
Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ allprojects {
2020}
2121
2222android {
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 }
Original file line number Diff line number Diff line change 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" />
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 >
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" />
Original file line number Diff line number Diff line change @@ -19,3 +19,6 @@ POM_DEVELOPER_ID = dropbox-api-team
1919POM_DEVELOPER_NAME = Dropbox API Team
2020POM_DEVELOPER_URL = https://github.com/dropbox/
2121POM_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
You can’t perform that action at this time.
0 commit comments