Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
* Fixed dark theme for tablets in free version
Browse files Browse the repository at this point in the history
  • Loading branch information
lgallard committed May 30, 2015
2 parents 5b552a5 + 45532e8 commit a809de4
Show file tree
Hide file tree
Showing 121 changed files with 4,064 additions and 7,719 deletions.
20 changes: 12 additions & 8 deletions qBittorrentClient/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 19

buildToolsVersion "22.0.0"
compileSdkVersion 21

defaultConfig {
applicationId 'com.lgallardo.qbittorrentclient'
minSdkVersion 14
targetSdkVersion 21
targetSdkVersion 22
archivesBaseName = "qBittorrentClient_v" + versionName
}

Expand All @@ -21,18 +22,18 @@ android {
productFlavors {
pro {
applicationId 'com.lgallardo.qbittorrentclientpro'
versionName '3.9.4'
versionName '4.1.0'
minSdkVersion 14
targetSdkVersion 21
versionCode 394
versionCode 410
archivesBaseName = "qBittorrentClient_v" + versionName
}
free {
applicationId "com.lgallardo.qbittorrentclient"
versionName '3.9.4'
versionName '4.1.0'
minSdkVersion 14
targetSdkVersion 21
versionCode 394
versionCode 410
archivesBaseName = "qBittorrentClient_v" + versionName
}
}
Expand All @@ -51,8 +52,11 @@ android {
}

dependencies {
compile 'com.android.support:support-v4:21.0.3'
compile 'com.google.android.gms:play-services:7.0.0'
compile 'com.android.support:support-v4:22.1.1'
compile 'com.android.support:appcompat-v7:22.1.1'
compile 'com.android.support:recyclerview-v7:22.1.1'
compile 'com.android.support:cardview-v7:22.1.1'
compile 'com.google.android.gms:play-services:7.3.0'
compile files('libs/httpcore-4.3.2.jar')
compile files('libs/httpmime-4.3.5.jar')
}
Loading

0 comments on commit a809de4

Please sign in to comment.