Просмотр исходного кода

1.修复被挤下线后的问题

tags/0.0.6
“yanghuaxuan” 3 лет назад
Родитель
Сommit
f9065b4284
4 измененных файлов: 37 добавлений и 30 удалений
  1. +29
    -29
      example/android/app/build.gradle
  2. +2
    -0
      example/pubspec.yaml
  3. +5
    -1
      lib/pages/home_page/home_page.dart
  4. +1
    -0
      lib/register.dart

+ 29
- 29
example/android/app/build.gradle Просмотреть файл

@@ -53,8 +53,8 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk {
//选择要添加的对应cpu类型的.so库。
abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
//abiFilters 'armeabi-v7a','x86_64'
//abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64', 'arm64-v8a'
abiFilters 'armeabi-v7a','x86_64'
}
}

@@ -109,33 +109,33 @@ android {


// // 应用信息配置
// productFlavors {
// // 智夜生活
// zhiying {
// applicationId "cn.zhios.zhiying"
// versionCode 46
// dimension "app"
// versionName '1.3.4'
// // 签名信息
// signingConfig signingConfigs.zhiying
// }
// }
//
// // 打包脚本
// android.applicationVariants.all { variant ->
// if (variant.buildType.name != "debug") {
// variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
// }
//
// variant.outputs.all { output ->
// def outputFile = output.outputFile
// if (outputFile != null && outputFile.name.endsWith('.apk')) {
// //这里修改apk文件名
// def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
// outputFileName = fileName
// }
// }
// }
productFlavors {
// 智夜生活
zhiying {
applicationId "cn.zhios.zhiying"
versionCode 47
dimension "app"
versionName '1.3.5'
// 签名信息
signingConfig signingConfigs.zhiying
}
}
// 打包脚本
android.applicationVariants.all { variant ->
if (variant.buildType.name != "debug") {
variant.getPackageApplicationProvider().get().outputDirectory = new File(project.rootDir.absolutePath + "/app/build/outputs/apk")
}
variant.outputs.all { output ->
def outputFile = output.outputFile
if (outputFile != null && outputFile.name.endsWith('.apk')) {
//这里修改apk文件名
def fileName = "${variant.productFlavors[0].name}_${releaseTime()}01_&V${variant.productFlavors[0].versionCode}.apk"
outputFileName = fileName
}
}
}

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->


+ 2
- 0
example/pubspec.yaml Просмотреть файл

@@ -46,6 +46,8 @@ dev_dependencies:
git:
ref: 0.0.2
url: http://192.168.0.138:3000/FnuoOS_ZhiYing/Zhiying_Member_Upgrade.git
plugin_platform_interface: "1.0.2"
permission_handler_platform_interface: "2.0.1"

# For information on the generic Dart part of this file, see the
# following page: https://dart.dev/tools/pub/pubspec


+ 5
- 1
lib/pages/home_page/home_page.dart Просмотреть файл

@@ -58,7 +58,11 @@ class _HomePageState extends State<HomePage> with WidgetsBindingObserver, Ticker
initAsync();

//如果登出则重新打开首页
streamSubscription = EventUtil.instance.on<LogOut>().listen((event) {
streamSubscription = EventUtil.instance.on<LogOut>().listen((event) async{
UserInfoModel user =
await Provider.of<UserInfoNotifier>(context, listen: false)
.getUserInfoModel();
user.token='';
Navigator.maybePop(context);
Navigator.pushReplacementNamed(context, "/homePage");
});


+ 1
- 0
lib/register.dart Просмотреть файл

@@ -154,6 +154,7 @@ class BaseWidgetRegister {
// NetUtil.post('/api/v1/rec/suning?page=1', method: NetMethod.GET, cache: true, showToast: false);
// // 考拉
// NetUtil.post('/api/v1/rec/kaola?page=1', method: NetMethod.GET, cache: true, showToast: false);
LoginStyleUtil.fetchNetPageData();
return null;
});



Загрузка…
Отмена
Сохранить