1637 Commits

Author SHA1 Message Date
Hans-Christoph Steiner
467d96b9ee Merge branch 'superfdroid-fixes' into 'master'
Superfdroid fixes

Package names and apk file names should only contain letters, numbers, dots,
and underscores. This is now checked in RootInstaller before executing 'pm
install' or 'pm uninstall'.

See merge request !48  https://gitlab.com/fdroid/fdroidclient/merge_requests/48
2015-01-19 19:56:57 +01:00
Dominik Schürmann
2392507634 Accept same set of characters for apk file names for 'pm install' like for package names 2015-01-19 19:47:18 +01:00
Dominik Schürmann
d941ac5eb0 Only accept valid package names as parameter for 'pm uninstall' 2015-01-19 19:47:16 +01:00
Dominik Schürmann
1f2fe25cd4 RootInstaller: Put quotes around filenames and package names 2015-01-19 19:47:13 +01:00
Dominik Schürmann
521218a45c Code cleanup and simplifications 2015-01-19 19:47:10 +01:00
Daniel Martí
70b392996c Start writing the changelog 2015-01-04 01:03:33 +01:00
Daniel Martí
27525122b8 Update to plugin version 1.0.0 2015-01-04 00:32:30 +01:00
Daniel Martí
7e7f0fe6f2 Fix some indentations in AppDetails 2015-01-04 00:24:55 +01:00
Daniel Martí
2bd05dec38 Remove unnecessary spaces 2015-01-04 00:23:19 +01:00
Daniel Martí
c6c472402d More final keywords 2015-01-03 20:46:31 +01:00
Daniel Martí
d2ade5c69b Don't show "not installed" for apks installed from someplace else
Fixes #107.
2015-01-03 20:27:28 +01:00
Daniel Martí
1405705fd5 Add some final keywords 2015-01-03 19:38:54 +01:00
Daniel Martí
623748091d Also explicitly state telephony as not required 2015-01-03 18:13:35 +01:00
Daniel Martí
bfc79f3a79 Supress deprecation warnings of compat CPU_ABI* usage 2015-01-03 18:05:04 +01:00
Daniel Martí
55c1bd0572 Support devices with more than two ABIs on >=21
Also, start using String[] like Android's SUPPORTED_ABIS instead of
Set<String>. Said list of ABIs will always be very short, at most containing a
handful of elements.
2015-01-03 17:53:36 +01:00
Daniel Martí
a03053e80a Replace the deprecated FILL_PARENT by MATCH_PARENT 2015-01-03 17:35:01 +01:00
Daniel Martí
bbca04c79b Fix comments on project.properties 2015-01-03 17:04:50 +01:00
Daniel Martí
2d44c35951 Remove more trailing whitespaces 2015-01-03 17:00:11 +01:00
Ciaran Gultnieks
abefe3d389 Merge branch 'fix-readme' into 'master'
Fix README.md

- change Gitorious to Gitlab
- add link to Merge Requests

See merge request !45
2014-12-31 12:17:32 +00:00
Nico Alt
bbe7475f75 fix README.md
- change Gitorious to Gitlab
- add link to Merge Requests
2014-12-31 11:05:52 +01:00
Daniel Martí
30385baf16 Bump to 0.78 0.78 2014-12-31 01:04:15 +01:00
Daniel Martí
37cf054d8d Don't end changelog entries with periods 2014-12-31 01:01:42 +01:00
Daniel Martí
e16ab9e74d Remove more trailing whitespaces 2014-12-31 01:00:31 +01:00
Peter Serwylo
5a99249920 Updated changelog with "swap" user interface stuff. 2014-12-31 23:38:24 +11:00
Daniel Martí
bcba0e3f47 Add changelog for 0.78 2014-12-31 00:41:46 +01:00
Daniel Martí
b42de49cb4 Fix default locale lint warning 2014-12-31 00:25:27 +01:00
Daniel Martí
e6d784368f Fix a StringFormatInvalid error 2014-12-31 00:15:20 +01:00
Daniel Martí
0f5a49fdd4 Adapt remove-unused-trans to gradle, yet to be tested 2014-12-31 00:11:33 +01:00
Daniel Martí
5dd4b8de1c Fix lone tabbed line 2014-12-31 00:10:09 +01:00
Daniel Martí
30bebd8361 Also generate txt lint report for script usage 2014-12-31 00:09:58 +01:00
Daniel Martí
5b2d75c018 Run fix-ellipsis 2014-12-31 00:00:20 +01:00
Daniel Martí
5af7cac4b7 Remove all trailing whitespaces in source files 2014-12-30 23:48:36 +01:00
Daniel Martí
69cc6ee3bb Merge branch 'gradle-improvements' of https://gitlab.com/pserwylo/fdroidclient 2014-12-30 23:45:19 +01:00
F-Droid Translatebot
ddc4181bba Translation updates 2014-12-30 22:37:50 +00:00
Peter Serwylo
d39ca46953 Clean up build scripts to make it harder to fail.
* Don't apply android plugin in root project

This results in the root project being treated like and Android project.
That is, gradle will expect an AndroidManifest, a targetSdk property, and
all sorts of stuff that is not relevant to the root project.

Perhaps more importantly, this breaks integration with Android Studio,
which is the tool that many potential contributors will be using.

Finally, it also allows runing gradle tasks in the root project, rather
than having to cd into the F-Droid directory, which is a minor nicety.

The reason it was there in the first place was to make it so that we could
find the location of the Android SDK using the same mechanism that the
plugin used. To deal with this, this commit adapts the SDK finding code
from the gradle plugin.

 * Make gradle error out when missing depenencies.

The support v4 library requires some obsolte SDKs that are likely
not installed. It caused non-intuitive errors to come up for me,
so I've made gradle tell the user when this occurs.

 * Documented the main build.gradle file

This is primarily to explain the hacks we use in order to build the
Android support libraries.
2014-12-29 01:38:51 +11:00
Peter Serwylo
e7e07bd03b Merge branch 'for-mainline' into 'master'
For mainline

See merge request !43
2014-12-28 01:48:58 +00:00
Peter Serwylo
405a31a415 Added support annotation library dependency.
The specific reason for this is that it provides @Null and @NotNull
annotations which should increase the safety of our code. Many of the
bugs which get filed are due to NullPointerExceptions, which could be
avoided by tooling using these annotations. The goal is to statically
catch this specific class of errors in as many situations as possible,
rather than waiting for them to occur at runtime.
2014-12-27 11:10:43 +11:00
Daniel Martí
c8a62a8e79 Warnings are from Android's lint, not java 2014-12-21 14:00:00 +01:00
F-Droid Translatebot
3a7e68da9e Translation updates 2014-12-18 11:02:35 +00:00
F-Droid Translatebot
442651b6fe Revert "Translation updates" - zh-hk is not valid for Android
This reverts commit f681eaac975d4d643588a61298f6d22078f7f574.
2014-12-18 11:01:05 +00:00
F-Droid Translatebot
f681eaac97 Translation updates 2014-12-18 10:44:03 +00:00
F-Droid Translatebot
ff87f0a77f Revert "Translation updates"
This reverts commit 0a77a9d210b88bc1e5e8994c391b7abf071b047d.
2014-12-18 10:40:14 +00:00
F-Droid Translatebot
0a77a9d210 Translation updates 2014-12-18 10:36:57 +00:00
Kees Jongenburger
c02194d894 Update README after F-Droid file move.
The README documentation was not updated after the move of the f-droid client
code to the F-Droid directory. The instruction where therefore wrong

The troubleshooting documentation about determining the used Android versions
in the project was also outdated. While the script was made functional the tip
to install the various sdk from the command line did does not work for me.
2014-12-16 15:36:16 +01:00
Daniel Martí
ce1ffb83cf Merge branch 'master' of https://gitlab.com/eighthave/fdroidclient 2014-12-14 15:53:45 +01:00
Daniel Martí
7d1bfd9ae0 Bump toolVersion 2014-12-14 15:52:54 +01:00
Hans-Christoph Steiner
d00888e6a3 move Jenkins script back to ./jenkins-build
This script should be in the root of the git repo so that the config in
Jenkins' web interface is always just:

    ./jenkins-build

This commit also includes a little code to make it easier for people to run
this script on their own machines, if they want to reproduce the Jenkins
build setup.
2014-12-12 10:47:04 +01:00
Hans-Christoph Steiner
851e13f485 move all ant settings to project.properties
No need in having them scattered across multiple files.
2014-12-11 13:59:29 +01:00
Hans-Christoph Steiner
8b9e5e5e5a simplify Eclipse setup by making direct imports of submodules work
These two changes make it so that the submodules can be directly imported
into Eclipse, and they'll be all setup to just work.
2014-12-11 13:52:40 +01:00
Hans-Christoph Steiner
a6b75ce822 rename script for building flash zip to make distinct from embedded scripts 2014-12-11 13:51:35 +01:00