mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 13:15:35 +03:00
Move package declarations to build.gradle
Requested by AGP upgrade and also is crashing test builds Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
This commit is contained in:
parent
07aedfd888
commit
9a0848e486
5 changed files with 8 additions and 7 deletions
|
@ -73,6 +73,11 @@ android {
|
||||||
// install this NDK version and Cmake to produce smaller APKs. Build will still work if not installed
|
// install this NDK version and Cmake to produce smaller APKs. Build will still work if not installed
|
||||||
ndkVersion "${ndkEnv.get("NDK_VERSION")}"
|
ndkVersion "${ndkEnv.get("NDK_VERSION")}"
|
||||||
|
|
||||||
|
|
||||||
|
namespace 'com.owncloud.android'
|
||||||
|
testNamespace "${namespace}.test"
|
||||||
|
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 23
|
minSdkVersion 23
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
|
|
|
@ -26,7 +26,6 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="${applicationId}.test"
|
|
||||||
android:sharedUserId="${applicationId}.uid">
|
android:sharedUserId="${applicationId}.uid">
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -17,8 +17,7 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
package="com.owncloud.android">
|
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".MainApp"
|
android:name=".MainApp"
|
||||||
|
|
|
@ -19,8 +19,7 @@
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
package="com.owncloud.android">
|
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:name=".MainApp"
|
android:name=".MainApp"
|
||||||
|
|
|
@ -18,8 +18,7 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
-->
|
-->
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
package="com.owncloud.android">
|
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||||
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
||||||
|
|
Loading…
Reference in a new issue