Skip to content
Snippets Groups Projects
Commit 3fd192ad authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Create initial empty application

parent e7e3ef86
No related branches found
No related tags found
1 merge request!1Resolve "Create initial empty application"
Pipeline #4829 passed
Showing
with 103 additions and 0 deletions
android/app/src/main/res/mipmap-xxxhdpi/launch_image.png

6.51 KiB

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<style name="NormalTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="LaunchTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">@drawable/launch_background</item>
</style>
<style name="NormalTheme" parent="@android:style/Theme.Light.NoTitleBar">
<item name="android:windowBackground">?android:colorBackground</item>
</style>
</resources>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.benoitharrault.stopmotion">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.2'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.1
app.versionCode=1
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
include ':app'
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
File added
File added
File added
File added
{
"app_name": "Stop Motion assistant",
"bottom_nav_home": "Home",
"bottom_nav_settings": "Settings",
"settings_title": "Settings",
"settings_title_global": "Global settings",
"settings_label_dummy_value": "Dummy parameter: ",
"lang_prefix": "en"
}
{
"app_name": "Assistant Stop Motion",
"bottom_nav_home": "Accueil",
"bottom_nav_settings": "Réglages",
"settings_title": "Réglages",
"settings_title_global": "Réglages globaux",
"settings_label_dummy_value": "Réglage bidon : ",
"lang_prefix": "fr"
}
Create empty minimal application.
Stop Motion assistant
\ No newline at end of file
fastlane/metadata/android/en-US/images/featureGraphic.png

214 B

fastlane/metadata/android/en-US/images/icon.png

21.7 KiB

Stop Motion assistant
\ No newline at end of file
Stop Motion assistant
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment