Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default.xml #6

Open
wants to merge 2 commits into
base: parfait-release
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 60 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
![Aoscp for Devs](http://i.imgur.com/A0jUjxO.png)

Downloading the Source
===================

Please read the [AOSP building instructions](http://source.android.com/source/index.html) before proceeding.

Initializing the Repository
-----------------------

Init core trees without any device/kernel/vendor :

$ repo init -u https://github.com/CypherOS/platform_manifest.git -b parfait-release

Sync our repository :

$ repo sync

***

Building AOSCP
==============

After the sync is finished, please read the [instructions from the Android site](http://s.android.com/source/building.html) on how to build.
To build AOSCP first execute this command:

. build/envsetup.sh

This command will load all of our proprietary makefiles for compiling! After the files are initiated,
Run this command:

brunch

No need to generate your device manually. If we official support your device, or if your device is in our vendor/aoscp.devices list
it will be appear on our brunch menu. Next, all you have to do is pick the number beside your device eg.

1. aoscp_angler-userdebug (Type "1" and press enter)

Now sit back and wait for your compilation to complete successfully!
Remember to `make clobber` every now and then!

***

Creating your thread
==================

You got your build to compile. Congrats! Now it's time to share it with the world! AOSCP threads simple so it's not much work left to do here.
Let's start with your thread name. If you are creating a thread for a device that's officially supported by CypherOS, here's how you need to format it:

[ROM][OFFICIAL][ANDROID VERSION_TAG]CypherOS "Version"[DEVICE]

For example: [ROM][UNOFFICIAL][8.1.0_r18]CypherOS 6.0.0[Angler]
Simple right? Now, if you're creating a thread for a device that's not officially supported by CypherOS, [OFFICIAL] needs to be replaced with [UNOFFICIAL]
to ensure users know what kind of build they're running. This is important, as it prevents alot of questions and concerns about bugs etc. that weren't generated
by our team.

Now that you've gotten the important part out of the way, copy and paste [THIS](https://raw.githubusercontent.com/CypherOS/vendor_aoscp/oreo-mr1-release/BuildAThread.txt)
into your thread. This is not to be modified! You can only add your own acceptable additions to provide more information to your users.

That's it! Thread complete! Thank you for jumping on board with us!
2 changes: 1 addition & 1 deletion default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<remote name="aosp"
fetch="https://android.googlesource.com/"
review="https://android-review.googlesource.com/"
revision="refs/tags/android-8.1.0_r41" />
revision="refs/tags/android-8.1.0_r48" />

<default revision="refs/heads/parfait-release"
remote="aosp"
Expand Down