mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
First Version Tag v0.1.2+4
This commit is contained in:
parent
975d5763b9
commit
a60fc4000a
2
.gitignore
vendored
2
.gitignore
vendored
@ -54,3 +54,5 @@ app.*.map.json
|
|||||||
|
|
||||||
# WASM
|
# WASM
|
||||||
/web/wasm/
|
/web/wasm/
|
||||||
|
|
||||||
|
android/key.properties
|
@ -25,6 +25,12 @@ apply plugin: 'com.android.application'
|
|||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
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 {
|
android {
|
||||||
ndkVersion "25.1.8937393"
|
ndkVersion "25.1.8937393"
|
||||||
compileSdkVersion flutter.compileSdkVersion
|
compileSdkVersion flutter.compileSdkVersion
|
||||||
@ -53,15 +59,23 @@ android {
|
|||||||
versionName flutterVersionName
|
versionName flutterVersionName
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
signingConfigs {
|
||||||
release {
|
release {
|
||||||
// TODO: Add your own signing config for the release build.
|
keyAlias keystoreProperties['keyAlias']
|
||||||
// Signing with the debug keys for now, so `flutter run --release` works.
|
keyPassword keystoreProperties['keyPassword']
|
||||||
shrinkResources false
|
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
|
||||||
minifyEnabled false
|
storePassword keystoreProperties['storePassword']
|
||||||
signingConfig signingConfigs.debug
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
buildTypes {
|
||||||
|
release {
|
||||||
|
shrinkResources false
|
||||||
|
minifyEnabled false
|
||||||
|
signingConfig signingConfigs.release
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
namespace 'com.veilid.veilidchat'
|
namespace 'com.veilid.veilidchat'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -171,8 +171,8 @@ SPEC CHECKSUMS:
|
|||||||
sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a
|
sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a
|
||||||
system_info_plus: 5393c8da281d899950d751713575fbf91c7709aa
|
system_info_plus: 5393c8da281d899950d751713575fbf91c7709aa
|
||||||
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
|
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
|
||||||
veilid: f5c2e662f91907b30cf95762619526ac3e4512fd
|
veilid: 51243c25047dbc1ebbfd87d713560260d802b845
|
||||||
|
|
||||||
PODFILE CHECKSUM: 7f4cf2154d55730d953b184299e6feee7a274740
|
PODFILE CHECKSUM: 7f4cf2154d55730d953b184299e6feee7a274740
|
||||||
|
|
||||||
COCOAPODS: 1.12.1
|
COCOAPODS: 1.14.2
|
||||||
|
@ -1552,7 +1552,7 @@ packages:
|
|||||||
path: "../veilid/veilid-flutter"
|
path: "../veilid/veilid-flutter"
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "0.2.4"
|
version: "0.2.5"
|
||||||
visibility_detector:
|
visibility_detector:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
name: veilidchat
|
name: veilidchat
|
||||||
description: VeilidChat
|
description: VeilidChat
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 1.0.2+0
|
version: 0.1.2+4
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.5 <4.0.0'
|
sdk: '>=3.0.5 <4.0.0'
|
||||||
|
Loading…
Reference in New Issue
Block a user