Switch to using 'namespace' property in build.gradle
This commit is contained in:
parent
5cf51066db
commit
66739b4b70
20 changed files with 24 additions and 25 deletions
|
@ -21,6 +21,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.autodiscovery.providersxml'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.autodiscovery.providersxml" />
|
|
@ -43,6 +43,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.core'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.fsck.k9.core">
|
||||
xmlns:tools="http://schemas.android.com/tools">
|
||||
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
||||
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
|
||||
|
|
|
@ -9,6 +9,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.crypto.openpgp'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.crypto.openpgp" />
|
|
@ -41,6 +41,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
<manifest
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:installLocation="auto"
|
||||
package="com.fsck.k9">
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.touchscreen"
|
||||
|
|
|
@ -24,6 +24,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.storage'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.storage" />
|
|
@ -12,6 +12,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.testing'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.testing" />
|
|
@ -18,6 +18,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.ui.base'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.fsck.k9.ui.base">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<application>
|
||||
|
||||
|
|
|
@ -70,6 +70,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.ui'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.fsck.k9.ui">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
|
||||
|
|
|
@ -27,6 +27,8 @@ dependencies {
|
|||
}
|
||||
|
||||
android {
|
||||
namespace 'com.fsck.k9.ui.setup'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,2 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="com.fsck.k9.ui.setup" />
|
|
@ -1,6 +1,8 @@
|
|||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
namespace 'org.openintents.openpgp'
|
||||
|
||||
compileSdkVersion buildConfig.compileSdk
|
||||
buildToolsVersion buildConfig.buildTools
|
||||
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="org.openintents.openpgp">
|
||||
|
||||
<application/>
|
||||
|
||||
</manifest>
|
Loading…
Reference in a new issue