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

Merge branch '1-create-base-empty-application' into 'master'

Resolve "Create base empty application"

Closes #1

See merge request !1
parents 59f62a10 8c90c184
No related branches found
No related tags found
1 merge request!1Resolve "Create base empty application"
Pipeline #5915 passed
Showing
with 103 additions and 0 deletions
android/app/src/main/res/mipmap-xxhdpi/launch_image.png

4.61 KiB

android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png

6.33 KiB

android/app/src/main/res/mipmap-xxxhdpi/launch_image.png

6.33 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.awale">
<!-- 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>
allprojects {
repositories {
google()
mavenCentral()
}
}
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
pluginManagement {
def flutterSdkPath = {
def properties = new Properties()
file("local.properties").withInputStream { properties.load(it) }
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
return flutterSdkPath
}
settings.ext.flutterSdkPath = flutterSdkPath()
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.2.2" apply false
id "org.jetbrains.kotlin.android" version "1.9.22" apply false
}
include ":app"
File added
File added
File added
File added
assets/skins/default_house.png

2.3 KiB

assets/skins/default_seed.png

4.88 KiB

{
"app_name": "Oware",
"settings_title": "Settings",
"settings_label_theme": "Theme mode",
"about_title": "Informations",
"about_content": "Oware",
"about_version": "Version: {version}",
"": ""
}
{
"app_name": "Awalé",
"settings_title": "Réglages",
"settings_label_theme": "Thème de couleurs",
"about_title": "Informations",
"about_content": "Awalé.",
"about_version": "Version : {version}",
"": ""
}
assets/ui/button_back.png

3.68 KiB

assets/ui/button_delete_saved_game.png

5.68 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment