Merge branch 'target_marshmallow' of https://github.com/owncloud/android into beta
authorAndy Scherzinger <info@andy-scherzinger.de>
Sat, 28 Nov 2015 10:48:57 +0000 (11:48 +0100)
committerAndy Scherzinger <info@andy-scherzinger.de>
Sat, 28 Nov 2015 10:48:57 +0000 (11:48 +0100)
Conflicts:
build.gradle

1  2 
.travis.yml
AndroidManifest.xml
build.gradle

diff --cc .travis.yml
Simple merge
Simple merge
diff --cc build.gradle
@@@ -27,15 -28,12 +28,18 @@@ dependencies 
  }
  
  android {
-     compileSdkVersion 22
-     buildToolsVersion "22.0.1"
+     compileSdkVersion 23
+     buildToolsVersion "23.0.2"
+     // as long as ownCloud uses Apache HTTP
+     // http://developer.android.com/about/versions/marshmallow/android-6.0-changes.html#behavior-apache-http-client
+     useLibrary 'org.apache.http.legacy'
  
 +    defaultConfig {
 +        applicationId "com.owncloud.android.beta"
 +        versionCode 20151128
 +        versionName "ownCloud beta"
 +    }
 +
      sourceSets {
          main {
              manifest.srcFile 'AndroidManifest.xml'
      packagingOptions {
          exclude 'META-INF/LICENSE.txt'
      }
 -}
 -
 -
 -
  
 +    signingConfigs {
 +        release {
 +            storeFile file(RELEASE_STORE_FILE)
 +            storePassword RELEASE_STORE_PASSWORD
 +            keyAlias RELEASE_KEY_ALIAS
 +            keyPassword RELEASE_KEY_PASSWORD
 +        }
 +    }
  
 +     buildTypes {
 +        release {
 +            signingConfig signingConfigs.release
 +        }
 +    }
  
- }
++}