updated version
This commit is contained in:
parent
1fec7b6595
commit
f9f4a20ac9
4 changed files with 6 additions and 7 deletions
|
@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
|
|||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 34
|
||||
compileSdk 34
|
||||
|
||||
sourceSets {
|
||||
main.java.srcDirs += 'src/main/kotlin'
|
||||
|
@ -41,7 +41,7 @@ android {
|
|||
defaultConfig {
|
||||
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||||
applicationId "net.broodjeaap.pizzaplanner.pizzaplanner"
|
||||
minSdkVersion flutter.minSdkVersion
|
||||
minSdkVersion 20
|
||||
targetSdkVersion 34
|
||||
versionCode flutterVersionCode.toInteger()
|
||||
versionName flutterVersionName
|
||||
|
|
|
@ -94,7 +94,7 @@ class PizzaRecipe extends HiveObject {
|
|||
|
||||
static Future<PizzaRecipe> fromParsedYaml(YamlMap recipeIn) async {
|
||||
var recipe = recipeIn;
|
||||
if (!recipeIn.containsKey("recipe")){
|
||||
if (recipeIn.containsKey("recipe")){
|
||||
recipe = recipeIn["recipe"] as YamlMap;
|
||||
}
|
||||
final String name = recipe["name"] as String;
|
||||
|
|
|
@ -105,13 +105,12 @@ class AddPizzaEventPageState extends State<AddPizzaEventPage> {
|
|||
)
|
||||
]
|
||||
),
|
||||
widget.pizzaRecipe.getIngredientsTable(pizzaCount, doughBallSize),
|
||||
Expanded(child: widget.pizzaRecipe.getIngredientsTable(pizzaCount, doughBallSize))
|
||||
]
|
||||
)
|
||||
),
|
||||
const Divider(),
|
||||
Expanded(
|
||||
flex: 45,
|
||||
flex: 40,
|
||||
child: ListView(
|
||||
children: <Widget>[
|
||||
Column(
|
||||
|
|
|
@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||
# Read more about iOS versioning at
|
||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||
version: 1.2.0
|
||||
version: 1.3.0
|
||||
|
||||
environment:
|
||||
sdk: ">=2.12.0 <3.0.0"
|
||||
|
|
Loading…
Add table
Reference in a new issue