Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 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