|
@@ -19,7 +19,7 @@ Open a terminal and type 'android' to start the Android SDK Manager. To build th
|
|
|
* Android SDK Tools and Android SDK Platform-tools (already installed); upgrade to their last versions is usually a good idea.
|
|
|
* Android SDK Build-Tools; any version from 20 or later should work fine; avoid preview versions, if any available.
|
|
|
* Android 4.4.2 (API 19), SDK Platform; needed for build/test ownCloud app.
|
|
|
-* Android 5.1.1 (API 22), SDK Platform; needed to build the Android Support Library (not neeeded if working with Android Studio or gradle) and build the owncloud app.
|
|
|
+* Android 6.0 (API 23), SDK Platform; needed to build the Android Support Library (not neeeded if working with Android Studio or gradle) and build the owncloud app.
|
|
|
|
|
|
Install any other package you consider interesting, such as emulators.
|
|
|
|
|
@@ -61,7 +61,7 @@ To set up the project in Android Studio follow the next steps:
|
|
|
|
|
|
### 3. Working in a terminal with Gradle:
|
|
|
|
|
|
-[Gradle][7] is the build system used by Android Studio to manage the building operations on Android apps. You do not need to install Gradle in your system, and Google recommends not to do it, but instead trusting on the Graddle wrapper included in the project [8].
|
|
|
+[Gradle][7] is the build system used by Android Studio to manage the building operations on Android apps. You do not need to install Gradle in your system, and Google recommends not to do it, but instead trusting on the [Graddle wrapper][8] included in the project.
|
|
|
|
|
|
* Open a terminal and go to the 'android' directory that contains the repository.
|
|
|
* Complete the setup of project properties running:
|
|
@@ -82,31 +82,38 @@ The generated APK file is saved in android/build/outputs/apk as android-debug.ap
|
|
|
|
|
|
* Open a terminal and go to the 'android' directory that contains the repository.
|
|
|
* Resolve necessary dependencies running:
|
|
|
- - Windows: ```setup_env.bat ant```
|
|
|
- - Mac OS/Linux: ```./setup_env.sh ant```
|
|
|
+ - Windows: ```setup_env.bat ant```
|
|
|
+ - Mac OS/Linux: ```./setup_env.sh ant```
|
|
|
* Open Eclipse and follow the menu path 'File'/'New'/'Project'
|
|
|
* Choose the option 'Android'/'Android Project from Existing Code' and click 'Next'
|
|
|
* Choose 'android/' folder as root
|
|
|
* Choose the projects with the next names under the 'New Project Name' column:
|
|
|
-** owncloud-android
|
|
|
-** android-support-appcompat-v7-exploded-aar
|
|
|
-** owncloud-android-workaround-accounts (optional)
|
|
|
-** ownCloud Android Library
|
|
|
-** ownCloud Sample Client (optional)
|
|
|
-** ownCloud Android library test project (optional)
|
|
|
-** ownCloud Android library test cases (optional)
|
|
|
+ - owncloud-android
|
|
|
+ - android-support-appcompat-v7-exploded-aar
|
|
|
+ - android-support-design-exploded-aar
|
|
|
+ - owncloud-android-workaround-accounts (optional)
|
|
|
+ - ownCloud Android Library
|
|
|
+ - ownCloud Sample Client (optional)
|
|
|
+ - ownCloud Android library test project (optional)
|
|
|
+ - ownCloud Android library test cases (optional)
|
|
|
* Do not choose the project owncloud-android-tests; it's obsolete.
|
|
|
* Do not enable 'Copy projects into workspace'.
|
|
|
* Click the 'Finish' button.
|
|
|
* Wait for a while; if 'Build automatically' is enabled in Eclipse, some errors could appear during the creation of the projects, but all of them should finally disappear.
|
|
|
* If any error persists, clean and build manually the next projects in order:
|
|
|
-** ownCloud Android Library
|
|
|
-** android-support-appcompat-v7-exploded-aar
|
|
|
-** owncloud-android
|
|
|
+ - ownCloud Android Library
|
|
|
+ - android-support-appcompat-v7-exploded-aar
|
|
|
+ - android-support-design-exploded-aar
|
|
|
+ - owncloud-android
|
|
|
* If any error on those projects persists, check the project properties. In the 'Android' section, API Level should be
|
|
|
-** ownCloud Android Library -> API level 19
|
|
|
-** android-support-appcompat-v7-exploded-aa -> API level 22
|
|
|
-** owncloud-android -> API level 22 ; in this project, two library projects should appear referred in the bottom of the dialog: libs\android-support-appcompat-v7-exploded-aar and owncloud-android-library. Add them if needed.
|
|
|
+ - ownCloud Android Library -> API level 19
|
|
|
+ - android-support-appcompat-v7-exploded-aa -> API level 23
|
|
|
+ - android-support-design-exploded-aa -> API level 23
|
|
|
+ - owncloud-android -> API level 23 ; in this project, three library projects should appear referred in the bottom of the dialog:
|
|
|
+ - libs\android-support-appcompat-v7-exploded-aar,
|
|
|
+ - libs\android-support-design-exploded-aar,
|
|
|
+ - owncloud-android-library.
|
|
|
+ - Add them if needed.
|
|
|
* After those actions you should be good to go. HAVE FUN!
|
|
|
|
|
|
|
|
@@ -133,13 +140,13 @@ NOTE: You must have mvn (version >= 3.1.1) in your environment path. Current And
|
|
|
Download/install Android plugin for Maven, then build ownCloud with mvn:
|
|
|
|
|
|
* Resolve necessary dependencies running:
|
|
|
- - Windows: "setup_env.bat maven"
|
|
|
- - Mac OS/Linux: "./setup_env.sh maven"
|
|
|
-
|
|
|
+ - Windows: "setup_env.bat maven"
|
|
|
+ - Mac OS/Linux: "./setup_env.sh maven"
|
|
|
* 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-22 -am install
|
|
|
+* mvn -pl com.simpligility.android.sdk-deployer:android-23 -am install
|
|
|
* cd ../android/owncloud-android-library
|
|
|
* mvn install
|
|
|
* cd ..
|