Merge branch 'gradle-updates' into 'master'

Misc gradle, lint and markdown updates



See merge request !223
This commit is contained in:
Peter Serwylo 2016-03-07 14:00:27 +00:00
commit da8c0e0e16
8 changed files with 19 additions and 10 deletions

View File

@ -1,3 +1,11 @@
### Upcoming release
* Show what repository each apk comes from
* Better support for Android 6.0
* Translation updates
### 0.99 (2016-02-29)
* Add simple "Use Tor" setting

View File

@ -55,7 +55,7 @@ To get all the logcat messages by F-Droid, you can run:
## Building tips
* Use `gradle --daemon` if you are going to build F-Droid multiple times.
* Use gradle with `--daemon` if you are going to build F-Droid multiple times.
* If you get a message like `Could not find com.android.support:support-...`,
make sure that you have the latest Android support maven repository.
@ -65,7 +65,7 @@ In order to run the F-Droid test suite, you will need to have either a real devi
connected via `adb`, or an emulator running. Then, execute the following from the
command line:
gradle connectedCheck
./gradlew connectedCheck
Note that the CI already runs the tests on an emulator, so you don't
necessarily have to do this yourself if you open a merge request as the tests

View File

@ -8,7 +8,7 @@
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="22"
android:targetSdkVersion="23"
/>
<supports-screens
@ -62,6 +62,7 @@
android:label="@string/app_name"
android:description="@string/app_description"
android:allowBackup="true"
android:fullBackupContent="true"
android:theme="@style/AppThemeLight"
android:supportsRtl="true"
>

View File

@ -16,7 +16,7 @@ dependencies {
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
compile 'com.google.zxing:core:3.2.1'
compile 'eu.chainfire:libsuperuser:1.0.0.201602011018'
compile 'eu.chainfire:libsuperuser:1.0.0.201602271131'
compile 'cc.mvdan.accesspoint:library:0.1.3'
compile 'info.guardianproject.netcipher:netcipher:1.2.1'
compile 'commons-net:commons-net:3.4'
@ -70,7 +70,7 @@ if (!hasProperty('sourceDeps')) {
'com.android.support:support-annotations:7f21659b084da073b77b6f7fe7ab250c4f23346238d4efdbbbb937e017ae4693',
'com.nostra13.universalimageloader:universal-image-loader:dbd5197ffec3a8317533190870a7c00ff3750dd6a31241448c6a5522d51b65b4',
'com.google.zxing:core:b4d82452e7a6bf6ec2698904b332431717ed8f9a850224f295aec89de80f2259',
'eu.chainfire:libsuperuser:952c5fc82f9c31d31d2b6a7054ee267dac1685fb037a254888c73c48de661eaf',
'eu.chainfire:libsuperuser:018344ff19ee94d252c14b4a503ee8b519184db473a5af83513f5837c413b128',
'cc.mvdan.accesspoint:library:dc89a085d6bc40381078b8dd7776b12bde0dbaf8ffbcddb17ec4ebc3edecc7ba',
'commons-net:commons-net:38cf2eca826b8bcdb236fc1f2e79e0c6dd8e7e0f5c44a3b8e839a1065b2fbe2e',
'info.guardianproject.netcipher:netcipher:611ec5bde9d799fd57e1efec5c375f9f460de2cdda98918541decc9a7d02f2ad',

View File

@ -70,7 +70,7 @@
android:background="@drawable/tab_unselected_holo"
android:fillViewport="true"
android:scrollbars="none">
<FrameLayout android:layout_width="match_parent"
<FrameLayout android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TabWidget
android:id="@android:id/tabs"

View File

@ -69,7 +69,7 @@
android:background="@drawable/tab_unselected_holo"
android:fillViewport="true"
android:scrollbars="none">
<FrameLayout android:layout_width="match_parent"
<FrameLayout android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TabWidget
android:id="@android:id/tabs"

View File

@ -6,7 +6,7 @@
<LinearLayout
android:id="@+id/repoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
android:paddingStart="?attr/listPreferredItemPaddingLeft"
android:paddingRight="?attr/listPreferredItemPaddingRight"

View File

@ -1,6 +1,6 @@
# F-Droid Client
[![build status](https://gitlab.com/ci/projects/6571/status.png?ref=master)](https://gitlab.com/ci/projects/6571?ref=master) [![Translation status](https://hosted.weblate.org/widgets/f-droid/-/svg-badge.svg)](https://hosted.weblate.org/engage/f-droid/)
[![build status](https://gitlab.com/ci/projects/6571/status.png?ref=HEAD)](https://gitlab.com/fdroid/fdroidclient/builds) [![Translation status](https://hosted.weblate.org/widgets/f-droid/-/svg-badge.svg)](https://hosted.weblate.org/engage/f-droid/)
Client for [F-Droid](https://f-droid.org), the Free Software repository system
for Android.
@ -8,7 +8,7 @@ for Android.
## Building with Gradle
cd F-Droid
./gradlew assembleRelease
../gradlew assembleRelease
## Direct download