Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/qzchenwl/ringdroid
Automatically exported from code.google.com/p/ringdroid
https://github.com/qzchenwl/ringdroid
Last synced: about 6 hours ago
JSON representation
Automatically exported from code.google.com/p/ringdroid
- Host: GitHub
- URL: https://github.com/qzchenwl/ringdroid
- Owner: qzchenwl
- Created: 2015-05-05T15:15:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-05T15:19:39.000Z (over 9 years ago)
- Last Synced: 2023-03-11T15:11:51.101Z (over 1 year ago)
- Language: Java
- Size: 1.07 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
***************************************************************************
*
* 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
*
* http://code.google.com/p/ringdroid/
* [email protected]
*
***************************************************************************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 debugTo 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