-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.txt
85 lines (63 loc) · 2.29 KB
/
notes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
make ENABLE_PV_LOGGING=1
android create project -t 2 -p videoplayer -a videoplayer -k com.android.videoplayer -m activity
useful links
========================================
android git release
http://android.git.kernel.org/
svg tools
http://www.inkscape.org/download/?lang=en
C/C++ programming
http://bbs.360.cn/4050052/7376852.html wjjsun
git usage
Global setup:
Download and install Git
git config --global user.name "Your Name"
git config --global user.email [email protected]
Next steps:
mkdir testdoc
cd testdoc
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin [email protected]:wjjsun/testdoc.git
git push origin master
Existing Git Repo?
cd existing_git_repo
git remote add origin [email protected]:wjjsun/testdoc.git
git push origin master
Importing a SVN Repo?
Click here
When you're done:
Continue
========================================
git log --graph --abbrev-commit --pretty=oneline --decorate
git clone git://github.com/wyjday/wyjday.git
git push [email protected]:wjjsun/wjjsun.git master
git log --graph --abbrev-commit --pretty=oneline --decorate
git clone git://github.com/wyjday/wyjday.git
android git location
git clone git://android.git.kernel.org/ + project path.
git clone git://android.git.kernel.org/platform/external/opencore.git
android build necesary packages
sudo apt-get install git-core gnupg sun-java5-jdk flex bison gperf libsdl-dev libesd0-dev libwxgtk2.6-dev build-essential zip curl libncurses5-dev zlib1g-dev
curl http://android.git.kernel.org/repo >~/bin/repo
repo init -u git://android.git.kernel.org/platform/manifest.git
repo init -u git://android.git.kernel.org/platform/manifest.git -b cupcake
adb command
========================================
get stdout/stderr log
http://emck.avaw.com/?p=116
$ adb shell stop
$ adb shell setprop log.redirect-stdio true
$ adb shell start
android examples
========================================
http streaming example 13.
http://whyandroid.com/android/92-android-tutorial-3-custom-media-streaming-with-mediaplayer.html
========================================
git clone git://github.com/wjjsun/wjjsun.git
git push [email protected]:wjjsun/wjjsun.git master
git clone [email protected]:/home/git/repositories/wyjday
git push [email protected]:/home/git/repositories/wyjday
========================================