Changes between Version 1 and Version 2 of github


Ignore:
Timestamp:
11/13/12 15:35:57 (11 years ago)
Author:
admin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • github

    v1 v2  
    1 = Andr =
    2 The purpose of this modified libril.so is to enable more debug output and to bring back the SIM unlock dialog for another unlock attempt.
     1= Android and Github =
     2How to use github for android developmen
    33
    4 == Howto: ==
    5 1. temp-root the phone using Visionary from the AppStore or permroot the phone
     4== Local manifest ==
     5In .repo create a file called local_manifest.xml to replace the original parts with your github forks. It should look like:
     6{{{
     7<?xml version="1.0" encoding="UTF-8"?>
     8<manifest> 
     9  <remove-project name="Andromadus/android_frameworks_base" path="frameworks/base" />
     10  <project name="guhl/android_frameworks_base" path="frameworks/base" revision="jellybean" />
     11  <remove-project name="Andromadus/android_packages_apps_Settings" path="packages/apps/Settings" />
     12  <project name="guhl/android_packages_apps_Settings" path="packages/apps/Settings" revision="jellybean" />
     13</manifest>
     14}}}
     15
     16== Local branch and push ==
     17Create your local branch to work on:
     18{{{
     19git remote add origin git@github.com:guhl/android_frameworks_base.git
     20git remote show origin