First Version Tag v0.1.2+4

This commit is contained in:
TC Johnson 2023-11-19 10:34:28 -06:00
parent 975d5763b9
commit a60fc4000a
5 changed files with 29 additions and 13 deletions

2
.gitignore vendored
View File

@ -54,3 +54,5 @@ app.*.map.json
# WASM
/web/wasm/
android/key.properties

View File

@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
android {
ndkVersion "25.1.8937393"
compileSdkVersion flutter.compileSdkVersion
@ -53,15 +59,23 @@ android {
versionName flutterVersionName
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
shrinkResources false
minifyEnabled false
signingConfig signingConfigs.debug
}
}
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
shrinkResources false
minifyEnabled false
signingConfig signingConfigs.release
}
}
namespace 'com.veilid.veilidchat'
}

View File

@ -171,8 +171,8 @@ SPEC CHECKSUMS:
sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a
system_info_plus: 5393c8da281d899950d751713575fbf91c7709aa
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
veilid: f5c2e662f91907b30cf95762619526ac3e4512fd
veilid: 51243c25047dbc1ebbfd87d713560260d802b845
PODFILE CHECKSUM: 7f4cf2154d55730d953b184299e6feee7a274740
COCOAPODS: 1.12.1
COCOAPODS: 1.14.2

View File

@ -1552,7 +1552,7 @@ packages:
path: "../veilid/veilid-flutter"
relative: true
source: path
version: "0.2.4"
version: "0.2.5"
visibility_detector:
dependency: transitive
description:

View File

@ -1,7 +1,7 @@
name: veilidchat
description: VeilidChat
publish_to: 'none'
version: 1.0.2+0
version: 0.1.2+4
environment:
sdk: '>=3.0.5 <4.0.0'