diff options
Diffstat (limited to 'android')
-rw-r--r-- | android/.project | 17 | ||||
-rw-r--r-- | android/.settings/org.eclipse.buildship.core.prefs | 8 | ||||
-rw-r--r-- | android/app/.classpath | 6 | ||||
-rw-r--r-- | android/app/.project | 23 | ||||
-rw-r--r-- | android/app/.settings/org.eclipse.buildship.core.prefs | 2 | ||||
-rw-r--r-- | android/app/build.gradle | 2 | ||||
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 12 | ||||
-rw-r--r-- | android/app/src/main/java/de/beam_messenger/beam_messenger/MainActivity.java (renamed from android/app/src/main/java/de/beam_messenger/BEAM_Messenger/MainActivity.java) | 2 |
8 files changed, 60 insertions, 12 deletions
diff --git a/android/.project b/android/.project new file mode 100644 index 0000000..3964dd3 --- /dev/null +++ b/android/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>android</name> + <comment>Project android created by Buildship.</comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.buildship.core.gradleprojectbuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.buildship.core.gradleprojectnature</nature> + </natures> +</projectDescription> diff --git a/android/.settings/org.eclipse.buildship.core.prefs b/android/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 0000000..22b1843 --- /dev/null +++ b/android/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,8 @@ +auto.sync=false +build.scans.enabled=false +connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) +connection.project.dir= +eclipse.preferences.version=1 +gradle.user.home= +offline.mode=false +override.workspace.settings=true diff --git a/android/app/.classpath b/android/app/.classpath new file mode 100644 index 0000000..8d8d85f --- /dev/null +++ b/android/app/.classpath @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8/"/> + <classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/> + <classpathentry kind="output" path="bin"/> +</classpath> diff --git a/android/app/.project b/android/app/.project new file mode 100644 index 0000000..ac485d7 --- /dev/null +++ b/android/app/.project @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>app</name> + <comment>Project app created by Buildship.</comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.eclipse.jdt.core.javabuilder</name> + <arguments> + </arguments> + </buildCommand> + <buildCommand> + <name>org.eclipse.buildship.core.gradleprojectbuilder</name> + <arguments> + </arguments> + </buildCommand> + </buildSpec> + <natures> + <nature>org.eclipse.jdt.core.javanature</nature> + <nature>org.eclipse.buildship.core.gradleprojectnature</nature> + </natures> +</projectDescription> diff --git a/android/app/.settings/org.eclipse.buildship.core.prefs b/android/app/.settings/org.eclipse.buildship.core.prefs new file mode 100644 index 0000000..b1886ad --- /dev/null +++ b/android/app/.settings/org.eclipse.buildship.core.prefs @@ -0,0 +1,2 @@ +connection.project.dir=.. +eclipse.preferences.version=1 diff --git a/android/app/build.gradle b/android/app/build.gradle index 0fa8004..8e0ce10 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -26,7 +26,7 @@ android { testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). - applicationId "de.beam_messenger.BEAM_Messenger" + applicationId "de.beam_messenger.beam_messenger" } buildTypes { diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 1cae011..3018739 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -1,7 +1,4 @@ -<manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="de.beam_messenger.BEAM_Messenger" - android:versionCode="1" - android:versionName="0.0.1"> +<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.beam_messenger.beam_messenger" android:versionCode="1" android:versionName="0.0.1"> <uses-sdk android:minSdkVersion="16" android:targetSdkVersion="21" /> @@ -17,12 +14,7 @@ additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> <application android:name="io.flutter.app.FlutterApplication" android:label="BEAM-Messenger" android:icon="@mipmap/ic_launcher"> - <activity android:name=".MainActivity" - android:launchMode="singleTop" - android:theme="@android:style/Theme.Black.NoTitleBar" - android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection" - android:hardwareAccelerated="true" - android:windowSoftInputMode="adjustResize"> + <activity android:name=".MainActivity" android:launchMode="singleTop" android:theme="@android:style/Theme.Black.NoTitleBar" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize"> <intent-filter> <action android:name="android.intent.action.MAIN"/> <category android:name="android.intent.category.LAUNCHER"/> diff --git a/android/app/src/main/java/de/beam_messenger/BEAM_Messenger/MainActivity.java b/android/app/src/main/java/de/beam_messenger/beam_messenger/MainActivity.java index bdf997d..dc271a0 100644 --- a/android/app/src/main/java/de/beam_messenger/BEAM_Messenger/MainActivity.java +++ b/android/app/src/main/java/de/beam_messenger/beam_messenger/MainActivity.java @@ -1,4 +1,4 @@ -package de.beam_messenger.BEAM_Messenger; +package de.beam_messenger.beam_messenger; import android.os.Bundle; |