https://github.com/hamedmp/android_packages_apps_ringdroid
Ringdroid traducido y mejorado para Jellybean
https://github.com/hamedmp/android_packages_apps_ringdroid
Last synced: 22 days ago
JSON representation
Ringdroid traducido y mejorado para Jellybean
- Host: GitHub
- URL: https://github.com/hamedmp/android_packages_apps_ringdroid
- Owner: HamedMP
- Created: 2013-11-03T17:17:26.000Z (over 12 years ago)
- Default Branch: esp-jb
- Last Pushed: 2013-02-11T19:55:43.000Z (over 13 years ago)
- Last Synced: 2025-03-21T16:58:26.309Z (about 1 year ago)
- Language: Java
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
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/
* ringdroid@google.com
*
***************************************************************************
A sound editor and ringtone creator for the Android operating system.
Questions, comments, feedback? Email ringdroid@google.com
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