You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: SETUP.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ Next steps will assume you have a Github account and that you will get the code
34
34
35
35
* In a web browser, go to https://github.com/owncloud/android, and click the 'Fork' button near the top right corner.
36
36
* Open a terminal and go on with the next steps in it.
37
-
* Clone your forked repository: ```git clone --recursive https://github.com/YOURGITHUBNAME/android.git```.
37
+
* Clone your forked repository: ```git clone https://github.com/YOURGITHUBNAME/android.git```.
38
38
* Move to the project folder with ```cd android```.
39
39
* Fetch and apply any changes from your remote branch 'master': ```git fetch``` + ```git rebase```
40
40
* Make official ownCloud repo known as upstream: ```git remote add upstream https://github.com/owncloud/android.git```
@@ -51,7 +51,6 @@ We recommend to use the last version available in the stable channel of Android
51
51
52
52
To set up the project in Android Studio follow the next steps:
53
53
54
-
* Make sure you have called ```git submodule update``` whenever you switched branches
55
54
* Open Android Studio and select 'Import Project (Eclipse ADT, Gradle, etc)'. Browse through your file system to the folder 'android' where the project is located. Android Studio will then create the '.iml' files it needs. If you ever close the project but the files are still there, you just select 'Open Project...'. The file chooser will show an Android face as the folder icon, which you can select to reopen the project.
56
55
* Android Studio will try to build the project directly after importing it. To build it manually, follow the menu path 'Build'/'Make Project', or just click the 'Play' button in the tool bar to build and run it in a mobile device or an emulator. The resulting APK file will be saved in the 'build/outputs/apk/' subdirectory in the project folder.
57
56
@@ -61,7 +60,6 @@ To set up the project in Android Studio follow the next steps:
61
60
[Gradle][6] 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 [Gradle wrapper][7] included in the project.
62
61
63
62
* Open a terminal and go to the 'android' directory that contains the repository.
64
-
* Make sure you have called ```git submodule update``` whenever you switched branches
65
63
* Run the 'clean' and 'build' tasks using the Gradle wrapper provided
0 commit comments