aboutsummaryrefslogtreecommitdiffstats
path: root/main/proguard.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Downgrade v4 support librarySamuel Tardieu2012-11-181-1/+1
| | | | | This reverts commit eb20785a1088e1ce760f1fdbce3021270062f8dd and restore a support library working fine with our target SDK.
* Fix build bug (proguard phase)Samuel Tardieu2012-11-181-1/+1
| | | | | | Proguard seems to have a problem finding some classes. This is an immediate fix, but may not be the most sensible one and may need to be reworked.
* Hide proguard notes we ignorersudev2012-05-261-1/+4
|
* Use httpclientandroidlib instead of plain old httpclientSamuel Tardieu2012-05-231-4/+4
|
* Improve Proguard configurationrsudev2012-05-121-8/+3
|
* Update proguard configurationrsudev2012-05-111-0/+8
|
* Try to buildSamuel Tardieu2012-05-111-0/+4
|
* Fix #1403: keep android.support.v4.os classesSamuel Tardieu2012-04-151-0/+1
| | | | | Android 1.6 needs some classes that are referenced dynamically from parcelable creators.
* fix proguard file according to lint of SDK 16Michael Keppler2011-12-231-2/+2
|
* Remove proguard-warningsSammysHP2011-11-261-4/+1
| | | The Android-support-package has a lot of references to classes from newer APIs, but it seems that they are used dynamically if they are available.
* New: Horizontal scrollable pages for cache-details using a ViewPager.SammysHP2011-11-231-0/+4
| | | | | | | This moves most of the code from "cgeodetail" into a new class "CacheDetailActivity". Some important parts are rewritten and the code is much more structured. This closes #83 "Redesign detail-view". Some minor changes will be added later (e.g. removing old files, improve log-count-display)
* Reuse the same proguard.cfg file as before the tools upgradeSamuel Tardieu2011-10-231-15/+22
| | | | | The upgrade created a new proguard.cfg file, but ours was perfectly fine to work with.
* Use the latest Android build toolsSamuel Tardieu2011-10-221-22/+15
| | | | | | | This change is caused by the latest version of the Eclipse ADT and the Android SDK (version 14). The Eclipse and ANT class path has been unified as bin/classes.
* Tell Proguard that we don't use JavaBeansSamuel Tardieu2011-10-091-0/+1
| | | | | Apache CollectionUtils can work with JavaBeans, and Proguard won't like them to be absent although we don't refer to them. Tell it to keep quiet.
* Use reflection to invoke compatibility methodSamuel Tardieu2011-09-301-0/+4
| | | | | | On some devices (e.g., G1 running Android 1.6), the verifier will try to load every referenced class. This change prevents the application from depending on AndroidLevel8. See issue #574.
* Use Google backup agent to backup preferencesSamuel Tardieu2011-09-201-0/+2
| | | | This will do nothing if the SDK API < 8.
* Move sources into the main directorySamuel Tardieu2011-09-161-0/+46
This prepares the inclusion of tests into the same repository.