-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
63 lines (50 loc) · 2.06 KB
/
README.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
***************************************************************************
*
* Copyright (C) 2008 - 2011 Google Inc.
*
* Ringdroid is licensed under the Apache License, Version 2.0.
* You may not use this source code except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
***************************************************************************
*
* Ringdroid
*
* https://github.com/google/ringdroid/
*
***************************************************************************
A sound editor and ringtone creator for the Android operating system.
Questions, comments, feedback? Email [email protected]
Build instructions:
You will need Apache Ant installed.
Download the Android SDK and put the path to the sdk "tools" directory
in your path. Then run:
rm build.xml
rm -rf bin/
android update project -n ringdroid -t android-14 -p .
Then, to build:
ant debug
To install the debug version:
adb install -r bin/ringdroid-debug.apk
### Release mode
http://code.google.com/android/intro/develop-and-debug.html
ant release
cp bin/ringdroid-release-unsigned.apk bin/ringdroid-release-signed.apk
jarsigner -keystore ~/ringdroid.keystore bin/ringdroid-release-signed.apk ringdroid
zipalign -f 4 bin/ringdroid-release-signed.apk bin/Ringdroid.apk
# Old:
#ant release
#cp bin/ringdroid-unsigned.apk bin/ringdroid-signed.apk
#jarsigner -keystore ~/ringdroid.keystore bin/ringdroid-signed.apk ringdroid
#zipalign -f 4 bin/ringdroid-signed.apk bin/Ringdroid.apk
# Initial key generated with:
# keytool -genkey -keystore ringdroid.keystore -alias ringdroid -validity 10000