diff --git a/.classpath b/.classpath index 7bc01d9a9c..51769745b2 100644 --- a/.classpath +++ b/.classpath @@ -1,9 +1,9 @@ - - + + diff --git a/.gitignore b/.gitignore index ac30011bbc..9b9bd8e396 100644 --- a/.gitignore +++ b/.gitignore @@ -13,18 +13,22 @@ bin/ gen/ target/ -# Local configuration file (sdk path, etc) +# Local configuration files (sdk path, etc) local.properties +oc_workaround/local.properties +oc_framework/local.properties +oc_framework-test-project/local.properties +tests/local.properties # Mac .DS_Store files .DS_Store -# These files are created automatically by Eclipse: -tests/proguard-project.txt -tests/project.properties -tests/ant.properties -tests/build.xml +# Proguard README proguard-project.txt +oc_workaround/proguard-project.txt +oc_framework/proguard-project.txt +oc_framework-test-project/proguard-project.txt +tests/proguard-project.txt # Should not be commited inside this repo: actionbarsherlock/ \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index b41da32195..f0ca872146 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "actionbarsherlock"] path = actionbarsherlock url = git://github.com/JakeWharton/ActionBarSherlock.git +[submodule "owncloud-android-library"] + path = owncloud-android-library + url = git://github.com/owncloud/android-library.git diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..50b73d1b98 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,22 @@ +language: android +android: + components: + - build-tools-20.0.0 + - android-19 + - android-17 + - android-14 + - extra-android-support + licenses: + - 'android-sdk-license-5be876d5' + - 'android-sdk-license-598b93a6' + +jdk: oraclejdk7 + +before_install: + - rm pom.xml + - ./setup_env.sh + +script: + - ant clean + - ant debug + diff --git a/AndroidManifest.xml b/AndroidManifest.xml index f1900f8c9f..a5990afd45 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -3,7 +3,7 @@ ownCloud Android client application Copyright (C) 2012 Bartek Przybylski - Copyright (C) 2012-2013 ownCloud Inc. + Copyright (C) 2012-2014 ownCloud Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 2, @@ -18,8 +18,8 @@ along with this program. If not, see . --> + android:versionCode="10600100" + android:versionName="1.6.1" xmlns:android="http://schemas.android.com/apk/res/android"> @@ -54,16 +54,12 @@ > - - - - - + @@ -83,7 +79,8 @@ - + + - + - + + > @@ -149,12 +150,12 @@ + - @@ -169,6 +170,10 @@ + + + + @@ -178,7 +183,16 @@ - + + + + + diff --git a/SETUP.md b/SETUP.md index 6e7b7f620a..39539038e9 100644 --- a/SETUP.md +++ b/SETUP.md @@ -1,56 +1,92 @@ - If you want to start help developing ownCloud please follow the [contribution guidlines][0] and observe these instructions: +If you want to start help developing ownCloud please follow the [contribution guidelines][0] and observe these instructions. + +If you have any problems, start again with 1) and work your way down. If something still does not work as described here, please open a new issue describing exactly what you did, what happened, and what should have happened. - 1. Fork and download android/develop repository: +### 1) Fork and download android/develop repository: - - NOTE: You must have git in your enviroment path - - Navigate to https://github.com/owncloud/android, click fork. - - Clone your new repo: "git clone git@github.com:YOURGITHUBNAME/android.git" - - "cd android" - - Checkout remote develop branch: "git checkout -b develop remotes/origin/develop" - - Pull changes from your develop branch: "git pull origin develop" - - Make sure to get the latest changes from official android/develop branch: - - Make official owncloud repo known as upstream: "git remote add upstream git@github.com:owncloud/android.git" - - Pull latest changes from upstream: "git pull upstream develop" +NOTE: Android SDK with platforms 8, 14 and 19 (and maybe others) need to be installed. + You must have the Android SDK 'tools/', and 'platforms-tools/' folders in your environment path variable. + "git" need to be installed and in your environment path variable. - 2. Building with console/maven: +* Navigate to https://github.com/owncloud/android, click fork. +* Clone your new repo: "git clone git@github.com:YOURGITHUBNAME/android.git" +* Move to the project folder with "cd android" +* Checkout remote develop branch: "git checkout -b develop remotes/origin/develop" +* Pull changes from your develop branch: "git pull origin develop" +* Make official ownCloud repo known as upstream: "git remote add upstream git@github.com:owncloud/android.git" +* Make sure to get the latest changes from official android/develop branch: "git pull upstream develop" +* Complete the setup of project properties and resolve pending dependencies running "setup_env.bat" or "./setup_env.sh" . - - OPTIONAL, CONTINUE WITH STEP 3 IF NOT REQUIRED! - - NOTE: You must have mvn in your enviroment path - - Download/install Android plugin for Maven, then build ownCloud with mvn: - - "cd .." - - "git clone https://github.com/mosabua/maven-android-sdk-deployer.git" - - "cd maven-android-sdk-deployer" - - "mvn -pl com.simpligility.android.sdk-deployer:android-17 -am install" - - "cd ../android" - - Now you can create APK using "mvn package" +At this point you can continue using different tools to build the project. Sections 2a), 2b), and 2c) describe some of the existing alternatives. - 3. Building with Eclipse: - - - NOTE: You must have android/tools, and 'platforms-tools' in your enviroment path - - Prepare building with Eclipse: - - "setup_env.bat" or "./setup_env.sh" - - Open Eclipse and create new "Android Project from Existing Code". As root choose android/actionbarsherlock/library - - Increase Android API level until project compiles. 14 should work. - - Clean project and compile. - - Make sure android/actionbarsherlock/library/bin/library.jar was created! - - Import OwnCloud Android project. - - Increase Android API level to 17. - - Clean project and compile. - - After those actions you should be good to go. HAVE FUN! - - NOTE: Even though API level is set to 17, APK also runs on older devices because in AndroidManifest.xml minSdkVersion is set to 8. - - 4. Create pull request: +### 2a) Building with Ant: - - NOTE: You must sign the [Contributor Agreement][1] before your changes can be accepted! - - Commit your changes locally: "git commit -a" - - Push your changes to your Github repo: "git push" - - Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request - - Click "Edit" and set "base:develop" - - Again, click "Edit" and set "compare:develop" - - Enter description and send pull request. +NOTE: You must have the Android SDK 'tools/', and 'platforms-tools/' folders in your environment path variable. + +* Run "ant clean" . +* Run "ant debug" to generate a debuggable version of the ownCloud app. + +### 2b) Building with console/maven: + +NOTE: You must have mvn (version >= 3.1.1) in your environment path. Current Android 'platforms-tools' need to be installed. + +Download/install Android plugin for Maven, install owncloud-android-library, then build ownCloud with mvn: + +* cd .. +* git clone https://github.com/mosabua/maven-android-sdk-deployer.git +* cd maven-android-sdk-deployer +* mvn -pl com.simpligility.android.sdk-deployer:android-19 -am install +* cd ../android/owncloud-android-library +* mvn install +* cd .. + +Now you can create ownCloud APK using "mvn package" + +### 2c) Building with Eclipse: + +NOTE: You must have the Android SDK 'tools/', and 'platforms-tools/' folders in your environment path variable. + +* Complete the setup of project properties and resolve pending dependencies running "setup_env.bat" or "./setup_env.sh" . +* Open Eclipse and create new "Android Project from Existing Code". Choose android/actionbarsherlock/library as root. +* Clean project and compile. +* If any error appear, check the project properties; in the 'Android' section, API Level should be greater or equal than 14. +* If "error loading libz.so.1" appears, try "sudo apt-get install lib32z1" +* Make sure android/actionbarsherlock/library/bin/library.jar was created. +* Create a new "Android Project from Existing Code". Choose android/owncloud-android-library as root. (test and sample clients are not required.) +* Clean project and compile. +* If any error appear, check the project properties; in the 'Android' section, API Level should be 19 or greater. +* Make sure 'android/owncloud-android-library/bin/owncloud android library.jar' was created. +* Import ownCloud Android project. +* Clean project and compile. +* If any error appears, check the project properties of owncloud-android project; in the 'Android' section: + - API Level should be 19 or greater. + - Two library projects should appear referred in the bottom square: actionbarsherlock/library and owncloud-android-library. Add them if needed. +* After those actions you should be good to go. HAVE FUN! + +NOTE: Even though API level is set to 19, APK also runs on older devices because in AndroidManifest.xml minSdkVersion is set to 8. + +### 3) Create pull request: + +NOTE: You must sign the [Contributor Agreement][1] before your changes can be accepted! + +* Commit your changes locally: "git commit -a" +* Push your changes to your Github repo: "git push" +* Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request +* Click "Edit" and set "base:develop" +* Again, click "Edit" and set "compare:develop" +* Enter description and send pull request. + +### 4) Create another pull request: + +To make sure your new pull request does not contain commits which are already contained in previous PRs, create a new branch which is a clone of upstream/develop. + +* git fetch upstream +* git checkout -b my_new_develop_branch upstream/develop +* If you want to rename that branch later: "git checkout -b my_new_develop_branch_with_new_name" +* Push branch to server: "git push -u origin name_of_local_develop_branch" +* Use Github to issue PR [0]: https://github.com/owncloud/android/blob/master/CONTRIBUTING.md [1]: http://owncloud.org/about/contributor-agreement/ - diff --git a/THIRD_PARTY.txt b/THIRD_PARTY.txt index d85eb89908..6df2e9aaf9 100644 --- a/THIRD_PARTY.txt +++ b/THIRD_PARTY.txt @@ -60,4 +60,12 @@ The third party software included and used by this project is: A binary JAR file must be generated from this linked project and included in the ownCloud client APK. See http://http://actionbarsherlock.com/ + + * TouchImageView, commit 6dbeac4f11936185ba374c73144ac431c23c9aab + Copyright (c) 2012 Michael Ortiz + Licensed under MIT License + JAR file libs/touch-image-view.jar has been generated by ownCloud Inc., including without + modifications com.ortiz.touch.ExtendedViewPager and com.ortiz.touch.TouchImageView classes. + See https://github.com/MikeOrtiz/TouchImageView + \ No newline at end of file diff --git a/libs/disklrucache-2.0.2.jar b/libs/disklrucache-2.0.2.jar new file mode 100644 index 0000000000..ca7907d0e2 Binary files /dev/null and b/libs/disklrucache-2.0.2.jar differ diff --git a/libs/jackrabbit-webdav-2.2.5-jar-with-dependencies.jar b/libs/jackrabbit-webdav-2.2.5-jar-with-dependencies.jar deleted file mode 100755 index 2dd374f9b6..0000000000 Binary files a/libs/jackrabbit-webdav-2.2.5-jar-with-dependencies.jar and /dev/null differ diff --git a/libs/touch-image-view.jar b/libs/touch-image-view.jar new file mode 100644 index 0000000000..539f615102 Binary files /dev/null and b/libs/touch-image-view.jar differ diff --git a/lint.xml b/lint.xml deleted file mode 100644 index ee0eead5bb..0000000000 --- a/lint.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/oc_jb_workaround/AndroidManifest.xml b/oc_jb_workaround/AndroidManifest.xml index 1b12fb493d..ada508cab6 100644 --- a/oc_jb_workaround/AndroidManifest.xml +++ b/oc_jb_workaround/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionCode="0100019" + android:versionName="1.0.19" > 4.0.0 com.owncloud.android owncloud - 1.3.21-SNAPSHOT + ${owncloud.version} apk Owncloud Android + 1.5.1-SNAPSHOT 1.6 - 4.2.2_r2 + + 4.4.2_r3 + + 19 4.2.0 @@ -22,9 +26,32 @@ scm:git:git@github.com:owncloud/android.git https://github.com/owncloud/android - + - + + + touch-image-view.jar + touch-image-view.jar + 1.0 + system + ${basedir}/libs/touch-image-view.jar + + + + + + + android-support-v4.jar + android-support-v4.jar + 1.0 + system + ${basedir}/third_party/android-support-library/android-support-v4.jar + + android android @@ -46,11 +73,12 @@ apklib + - org.apache.jackrabbit - jackrabbit-webdav - 2.5.2 - + com.owncloud.android + owncloud-android-library + ${owncloud.version} + @@ -74,12 +102,11 @@ com.jayway.maven.plugins.android.generation2 android-maven-plugin - 3.5.0 + 3.8.0 - ${env.ANDROID_HOME} - 17 + ${google.android-api} true diff --git a/project.properties b/project.properties index c9e58408e8..28edd9934e 100644 --- a/project.properties +++ b/project.properties @@ -10,3 +10,4 @@ # Project target. target=android-19 android.library.reference.1=actionbarsherlock/library +android.library.reference.2=owncloud-android-library diff --git a/res/drawable-hdpi-v11/notification_icon.png b/res/drawable-hdpi-v11/notification_icon.png new file mode 100644 index 0000000000..9e634a8cc3 Binary files /dev/null and b/res/drawable-hdpi-v11/notification_icon.png differ diff --git a/res/drawable-hdpi-v9/ic_action_create_dir.png b/res/drawable-hdpi-v9/ic_action_create_dir.png deleted file mode 100644 index ece0eb4425..0000000000 Binary files a/res/drawable-hdpi-v9/ic_action_create_dir.png and /dev/null differ diff --git a/res/drawable-hdpi-v9/ic_action_settings.png b/res/drawable-hdpi-v9/ic_action_settings.png new file mode 100644 index 0000000000..86b54f4c71 Binary files /dev/null and b/res/drawable-hdpi-v9/ic_action_settings.png differ diff --git a/res/drawable-hdpi-v9/ic_action_upload.png b/res/drawable-hdpi-v9/ic_action_upload.png deleted file mode 100644 index 2369348c9d..0000000000 Binary files a/res/drawable-hdpi-v9/ic_action_upload.png and /dev/null differ diff --git a/res/drawable-hdpi/copy_link.png b/res/drawable-hdpi/copy_link.png new file mode 100644 index 0000000000..35df55f751 Binary files /dev/null and b/res/drawable-hdpi/copy_link.png differ diff --git a/res/drawable-hdpi/file.png b/res/drawable-hdpi/file.png index 08f993720f..71d739070a 100644 Binary files a/res/drawable-hdpi/file.png and b/res/drawable-hdpi/file.png differ diff --git a/res/drawable-hdpi/file_doc.png b/res/drawable-hdpi/file_doc.png index 068ed5725a..e9c232398d 100644 Binary files a/res/drawable-hdpi/file_doc.png and b/res/drawable-hdpi/file_doc.png differ diff --git a/res/drawable-hdpi/file_image.png b/res/drawable-hdpi/file_image.png index dc40bae8d5..bdb2e65c7e 100644 Binary files a/res/drawable-hdpi/file_image.png and b/res/drawable-hdpi/file_image.png differ diff --git a/res/drawable-hdpi/file_movie.png b/res/drawable-hdpi/file_movie.png index 2acfaf8d76..e178ccee4f 100644 Binary files a/res/drawable-hdpi/file_movie.png and b/res/drawable-hdpi/file_movie.png differ diff --git a/res/drawable-hdpi/file_pdf.png b/res/drawable-hdpi/file_pdf.png index a4af281541..85c8953020 100644 Binary files a/res/drawable-hdpi/file_pdf.png and b/res/drawable-hdpi/file_pdf.png differ diff --git a/res/drawable-hdpi/file_ppt.png b/res/drawable-hdpi/file_ppt.png new file mode 100644 index 0000000000..4fb809ebfb Binary files /dev/null and b/res/drawable-hdpi/file_ppt.png differ diff --git a/res/drawable-hdpi/file_sound.png b/res/drawable-hdpi/file_sound.png index 33045afb17..30f5367c12 100644 Binary files a/res/drawable-hdpi/file_sound.png and b/res/drawable-hdpi/file_sound.png differ diff --git a/res/drawable-hdpi/file_xls.png b/res/drawable-hdpi/file_xls.png new file mode 100644 index 0000000000..f6a2cc8d53 Binary files /dev/null and b/res/drawable-hdpi/file_xls.png differ diff --git a/res/drawable-hdpi/file_zip.png b/res/drawable-hdpi/file_zip.png index 398f601d78..bffacb43ae 100644 Binary files a/res/drawable-hdpi/file_zip.png and b/res/drawable-hdpi/file_zip.png differ diff --git a/res/drawable-hdpi/folder_public.png b/res/drawable-hdpi/folder_public.png new file mode 100644 index 0000000000..337aba941f Binary files /dev/null and b/res/drawable-hdpi/folder_public.png differ diff --git a/res/drawable-hdpi/ic_action_create_dir.png b/res/drawable-hdpi/ic_action_create_dir.png index 15068bc7fa..ece0eb4425 100644 Binary files a/res/drawable-hdpi/ic_action_create_dir.png and b/res/drawable-hdpi/ic_action_create_dir.png differ diff --git a/res/drawable-hdpi/ic_action_settings.png b/res/drawable-hdpi/ic_action_settings.png new file mode 100644 index 0000000000..999d0f0d8c Binary files /dev/null and b/res/drawable-hdpi/ic_action_settings.png differ diff --git a/res/drawable-hdpi/ic_action_upload.png b/res/drawable-hdpi/ic_action_upload.png index b372b7e19a..2369348c9d 100644 Binary files a/res/drawable-hdpi/ic_action_upload.png and b/res/drawable-hdpi/ic_action_upload.png differ diff --git a/res/drawable-hdpi/ic_favorite.png b/res/drawable-hdpi/ic_favorite.png new file mode 100644 index 0000000000..1cb4d85798 Binary files /dev/null and b/res/drawable-hdpi/ic_favorite.png differ diff --git a/res/drawable-hdpi/ic_menu_archive.png b/res/drawable-hdpi/ic_menu_archive.png index 0bdcac5e22..7d25b82bd7 100644 Binary files a/res/drawable-hdpi/ic_menu_archive.png and b/res/drawable-hdpi/ic_menu_archive.png differ diff --git a/res/drawable-hdpi/notification_icon.png b/res/drawable-hdpi/notification_icon.png new file mode 100644 index 0000000000..fd2bc5b443 Binary files /dev/null and b/res/drawable-hdpi/notification_icon.png differ diff --git a/res/drawable-hdpi/shared_with_me.png b/res/drawable-hdpi/shared_with_me.png new file mode 100644 index 0000000000..222172a7d4 Binary files /dev/null and b/res/drawable-hdpi/shared_with_me.png differ diff --git a/res/drawable-hdpi/shared_with_me_folder.png b/res/drawable-hdpi/shared_with_me_folder.png new file mode 100644 index 0000000000..271e7b2df0 Binary files /dev/null and b/res/drawable-hdpi/shared_with_me_folder.png differ diff --git a/res/drawable-hdpi/sharedlink.png b/res/drawable-hdpi/sharedlink.png new file mode 100644 index 0000000000..a3c42a95fc Binary files /dev/null and b/res/drawable-hdpi/sharedlink.png differ diff --git a/res/drawable-hdpi/winter_holidays_icon.png b/res/drawable-hdpi/winter_holidays_icon.png new file mode 100644 index 0000000000..c1764b6d09 Binary files /dev/null and b/res/drawable-hdpi/winter_holidays_icon.png differ diff --git a/res/drawable-ldpi-v9/ic_action_create_dir.png b/res/drawable-ldpi-v9/ic_action_create_dir.png deleted file mode 100644 index 8ed2dae9a9..0000000000 Binary files a/res/drawable-ldpi-v9/ic_action_create_dir.png and /dev/null differ diff --git a/res/drawable-ldpi-v9/ic_action_settings.png b/res/drawable-ldpi-v9/ic_action_settings.png new file mode 100644 index 0000000000..e2c2d517f5 Binary files /dev/null and b/res/drawable-ldpi-v9/ic_action_settings.png differ diff --git a/res/drawable-ldpi-v9/ic_action_upload.png b/res/drawable-ldpi-v9/ic_action_upload.png deleted file mode 100644 index 2d4ba56fa2..0000000000 Binary files a/res/drawable-ldpi-v9/ic_action_upload.png and /dev/null differ diff --git a/res/drawable-ldpi/copy_link.png b/res/drawable-ldpi/copy_link.png new file mode 100644 index 0000000000..b3caf52287 Binary files /dev/null and b/res/drawable-ldpi/copy_link.png differ diff --git a/res/drawable-ldpi/file.png b/res/drawable-ldpi/file.png index bbe560bb12..b669fdf403 100644 Binary files a/res/drawable-ldpi/file.png and b/res/drawable-ldpi/file.png differ diff --git a/res/drawable-ldpi/file_doc.png b/res/drawable-ldpi/file_doc.png index a4070434a1..0ea07e3b43 100644 Binary files a/res/drawable-ldpi/file_doc.png and b/res/drawable-ldpi/file_doc.png differ diff --git a/res/drawable-ldpi/file_image.png b/res/drawable-ldpi/file_image.png index b3af57ca53..1bf20155ad 100644 Binary files a/res/drawable-ldpi/file_image.png and b/res/drawable-ldpi/file_image.png differ diff --git a/res/drawable-ldpi/file_movie.png b/res/drawable-ldpi/file_movie.png index 53bf0e7829..e50c1681e8 100644 Binary files a/res/drawable-ldpi/file_movie.png and b/res/drawable-ldpi/file_movie.png differ diff --git a/res/drawable-ldpi/file_pdf.png b/res/drawable-ldpi/file_pdf.png index ded8249968..a05afdd5e9 100644 Binary files a/res/drawable-ldpi/file_pdf.png and b/res/drawable-ldpi/file_pdf.png differ diff --git a/res/drawable-ldpi/file_ppt.png b/res/drawable-ldpi/file_ppt.png new file mode 100644 index 0000000000..11a9cc960d Binary files /dev/null and b/res/drawable-ldpi/file_ppt.png differ diff --git a/res/drawable-ldpi/file_sound.png b/res/drawable-ldpi/file_sound.png index 6fc963f838..26e5a5feca 100644 Binary files a/res/drawable-ldpi/file_sound.png and b/res/drawable-ldpi/file_sound.png differ diff --git a/res/drawable-ldpi/file_xls.png b/res/drawable-ldpi/file_xls.png new file mode 100644 index 0000000000..985536775d Binary files /dev/null and b/res/drawable-ldpi/file_xls.png differ diff --git a/res/drawable-ldpi/file_zip.png b/res/drawable-ldpi/file_zip.png index 04340f4670..88d0040009 100644 Binary files a/res/drawable-ldpi/file_zip.png and b/res/drawable-ldpi/file_zip.png differ diff --git a/res/drawable-ldpi/ic_action_create_dir.png b/res/drawable-ldpi/ic_action_create_dir.png index 78356fe139..8ed2dae9a9 100644 Binary files a/res/drawable-ldpi/ic_action_create_dir.png and b/res/drawable-ldpi/ic_action_create_dir.png differ diff --git a/res/drawable-ldpi/ic_action_settings.png b/res/drawable-ldpi/ic_action_settings.png new file mode 100644 index 0000000000..c290e5902f Binary files /dev/null and b/res/drawable-ldpi/ic_action_settings.png differ diff --git a/res/drawable-ldpi/ic_action_upload.png b/res/drawable-ldpi/ic_action_upload.png index 9e3f74504f..2d4ba56fa2 100644 Binary files a/res/drawable-ldpi/ic_action_upload.png and b/res/drawable-ldpi/ic_action_upload.png differ diff --git a/res/drawable-ldpi/ic_menu_archive.png b/res/drawable-ldpi/ic_menu_archive.png index 7818537cf2..e4d0ee54a7 100644 Binary files a/res/drawable-ldpi/ic_menu_archive.png and b/res/drawable-ldpi/ic_menu_archive.png differ diff --git a/res/drawable-ldpi/winter_holidays_icon.png b/res/drawable-ldpi/winter_holidays_icon.png new file mode 100644 index 0000000000..9261d32761 Binary files /dev/null and b/res/drawable-ldpi/winter_holidays_icon.png differ diff --git a/res/drawable-mdpi-v11/notification_icon.png b/res/drawable-mdpi-v11/notification_icon.png new file mode 100644 index 0000000000..e33e65355f Binary files /dev/null and b/res/drawable-mdpi-v11/notification_icon.png differ diff --git a/res/drawable-mdpi-v9/ic_action_create_dir.png b/res/drawable-mdpi-v9/ic_action_create_dir.png deleted file mode 100644 index 9215a62540..0000000000 Binary files a/res/drawable-mdpi-v9/ic_action_create_dir.png and /dev/null differ diff --git a/res/drawable-mdpi-v9/ic_action_settings.png b/res/drawable-mdpi-v9/ic_action_settings.png new file mode 100644 index 0000000000..47ef3f4429 Binary files /dev/null and b/res/drawable-mdpi-v9/ic_action_settings.png differ diff --git a/res/drawable-mdpi-v9/ic_action_upload.png b/res/drawable-mdpi-v9/ic_action_upload.png deleted file mode 100644 index 0faf43b06b..0000000000 Binary files a/res/drawable-mdpi-v9/ic_action_upload.png and /dev/null differ diff --git a/res/drawable-mdpi/copy_link.png b/res/drawable-mdpi/copy_link.png new file mode 100644 index 0000000000..4e2af28912 Binary files /dev/null and b/res/drawable-mdpi/copy_link.png differ diff --git a/res/drawable-mdpi/file.png b/res/drawable-mdpi/file.png index 0a1ca52dfb..5fa8505f60 100644 Binary files a/res/drawable-mdpi/file.png and b/res/drawable-mdpi/file.png differ diff --git a/res/drawable-mdpi/file_doc.png b/res/drawable-mdpi/file_doc.png index 95651f8e23..2e7628a920 100644 Binary files a/res/drawable-mdpi/file_doc.png and b/res/drawable-mdpi/file_doc.png differ diff --git a/res/drawable-mdpi/file_image.png b/res/drawable-mdpi/file_image.png index 2b2fff491c..eedd41f1a0 100644 Binary files a/res/drawable-mdpi/file_image.png and b/res/drawable-mdpi/file_image.png differ diff --git a/res/drawable-mdpi/file_movie.png b/res/drawable-mdpi/file_movie.png index 4c0254c4e1..b37e98d6bb 100644 Binary files a/res/drawable-mdpi/file_movie.png and b/res/drawable-mdpi/file_movie.png differ diff --git a/res/drawable-mdpi/file_pdf.png b/res/drawable-mdpi/file_pdf.png index 306ad99ad7..07aa23805a 100644 Binary files a/res/drawable-mdpi/file_pdf.png and b/res/drawable-mdpi/file_pdf.png differ diff --git a/res/drawable-mdpi/file_ppt.png b/res/drawable-mdpi/file_ppt.png new file mode 100644 index 0000000000..db7d58d2a0 Binary files /dev/null and b/res/drawable-mdpi/file_ppt.png differ diff --git a/res/drawable-mdpi/file_sound.png b/res/drawable-mdpi/file_sound.png index 8789e5cf6a..6b8b589210 100644 Binary files a/res/drawable-mdpi/file_sound.png and b/res/drawable-mdpi/file_sound.png differ diff --git a/res/drawable-mdpi/file_xls.png b/res/drawable-mdpi/file_xls.png new file mode 100644 index 0000000000..b0264d7842 Binary files /dev/null and b/res/drawable-mdpi/file_xls.png differ diff --git a/res/drawable-mdpi/file_zip.png b/res/drawable-mdpi/file_zip.png index 92647b83e1..61974b8472 100644 Binary files a/res/drawable-mdpi/file_zip.png and b/res/drawable-mdpi/file_zip.png differ diff --git a/res/drawable-mdpi/folder_public.png b/res/drawable-mdpi/folder_public.png new file mode 100644 index 0000000000..374cf91881 Binary files /dev/null and b/res/drawable-mdpi/folder_public.png differ diff --git a/res/drawable-mdpi/ic_action_create_dir.png b/res/drawable-mdpi/ic_action_create_dir.png index 636cf0ec06..9215a62540 100644 Binary files a/res/drawable-mdpi/ic_action_create_dir.png and b/res/drawable-mdpi/ic_action_create_dir.png differ diff --git a/res/drawable-mdpi/ic_action_settings.png b/res/drawable-mdpi/ic_action_settings.png new file mode 100644 index 0000000000..0eb78f7c73 Binary files /dev/null and b/res/drawable-mdpi/ic_action_settings.png differ diff --git a/res/drawable-mdpi/ic_action_upload.png b/res/drawable-mdpi/ic_action_upload.png index d30ee8a830..0faf43b06b 100644 Binary files a/res/drawable-mdpi/ic_action_upload.png and b/res/drawable-mdpi/ic_action_upload.png differ diff --git a/res/drawable-mdpi/ic_favorite.png b/res/drawable-mdpi/ic_favorite.png new file mode 100644 index 0000000000..dead4741ac Binary files /dev/null and b/res/drawable-mdpi/ic_favorite.png differ diff --git a/res/drawable-mdpi/ic_menu_archive.png b/res/drawable-mdpi/ic_menu_archive.png index 2c50285186..7f29fbc837 100644 Binary files a/res/drawable-mdpi/ic_menu_archive.png and b/res/drawable-mdpi/ic_menu_archive.png differ diff --git a/res/drawable-mdpi/notification_icon.png b/res/drawable-mdpi/notification_icon.png new file mode 100644 index 0000000000..2e8beda678 Binary files /dev/null and b/res/drawable-mdpi/notification_icon.png differ diff --git a/res/drawable-mdpi/shared_with_me.png b/res/drawable-mdpi/shared_with_me.png new file mode 100644 index 0000000000..8300eacf45 Binary files /dev/null and b/res/drawable-mdpi/shared_with_me.png differ diff --git a/res/drawable-mdpi/shared_with_me_folder.png b/res/drawable-mdpi/shared_with_me_folder.png new file mode 100644 index 0000000000..3b8aeeee70 Binary files /dev/null and b/res/drawable-mdpi/shared_with_me_folder.png differ diff --git a/res/drawable-mdpi/sharedlink.png b/res/drawable-mdpi/sharedlink.png new file mode 100644 index 0000000000..772838ad20 Binary files /dev/null and b/res/drawable-mdpi/sharedlink.png differ diff --git a/res/drawable-mdpi/winter_holidays_icon.png b/res/drawable-mdpi/winter_holidays_icon.png new file mode 100644 index 0000000000..b0226dce89 Binary files /dev/null and b/res/drawable-mdpi/winter_holidays_icon.png differ diff --git a/res/drawable-xhdpi-v11/notification_icon.png b/res/drawable-xhdpi-v11/notification_icon.png new file mode 100644 index 0000000000..1ad49714c9 Binary files /dev/null and b/res/drawable-xhdpi-v11/notification_icon.png differ diff --git a/res/drawable-xhdpi/copy_link.png b/res/drawable-xhdpi/copy_link.png new file mode 100644 index 0000000000..c69eb05ae0 Binary files /dev/null and b/res/drawable-xhdpi/copy_link.png differ diff --git a/res/drawable-xhdpi/ic_favorite.png b/res/drawable-xhdpi/ic_favorite.png new file mode 100644 index 0000000000..c187f0c138 Binary files /dev/null and b/res/drawable-xhdpi/ic_favorite.png differ diff --git a/res/drawable-xhdpi/icon.png b/res/drawable-xhdpi/icon.png new file mode 100644 index 0000000000..041efc6b47 Binary files /dev/null and b/res/drawable-xhdpi/icon.png differ diff --git a/res/drawable-xhdpi/notification_icon.png b/res/drawable-xhdpi/notification_icon.png new file mode 100644 index 0000000000..b3855d61a6 Binary files /dev/null and b/res/drawable-xhdpi/notification_icon.png differ diff --git a/res/drawable-xhdpi/shared_with_me.png b/res/drawable-xhdpi/shared_with_me.png new file mode 100644 index 0000000000..3879663c8c Binary files /dev/null and b/res/drawable-xhdpi/shared_with_me.png differ diff --git a/res/drawable-xhdpi/sharedlink.png b/res/drawable-xhdpi/sharedlink.png new file mode 100644 index 0000000000..9ef8f3e300 Binary files /dev/null and b/res/drawable-xhdpi/sharedlink.png differ diff --git a/res/drawable/downloading_file_indicator.png b/res/drawable/downloading_file_indicator.png index 179a3f75fa..7c495546dd 100644 Binary files a/res/drawable/downloading_file_indicator.png and b/res/drawable/downloading_file_indicator.png differ diff --git a/res/drawable/ic_favorite.png b/res/drawable/ic_favorite.png deleted file mode 100644 index 4843dc1f69..0000000000 Binary files a/res/drawable/ic_favorite.png and /dev/null differ diff --git a/res/drawable/local_file_indicator.png b/res/drawable/local_file_indicator.png index 08a7b80847..85d5271cc7 100644 Binary files a/res/drawable/local_file_indicator.png and b/res/drawable/local_file_indicator.png differ diff --git a/res/drawable/uploading_file_indicator.png b/res/drawable/uploading_file_indicator.png index b0b5634f96..b71add0175 100644 Binary files a/res/drawable/uploading_file_indicator.png and b/res/drawable/uploading_file_indicator.png differ diff --git a/res/layout-land/account_setup.xml b/res/layout-land/account_setup.xml index 1025bcff9a..88b1ab3cd8 100644 --- a/res/layout-land/account_setup.xml +++ b/res/layout-land/account_setup.xml @@ -27,7 +27,7 @@ @@ -67,7 +67,7 @@ android:text="@string/auth_check_server" android:visibility="gone" /> -