From 4fdea07856d0ee544ad3f0f4451a7839f7b2cb98 Mon Sep 17 00:00:00 2001 From: songxiaoliang <563609104@qq.com> Date: Tue, 19 Feb 2019 11:43:01 +0800 Subject: [PATCH 1/5] =?UTF-8?q?=E6=B7=BB=E5=8A=A0Android=E8=AE=BE=E5=A4=87?= =?UTF-8?q?so=E5=BA=93=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 2 +- lib/pages/home/home_page.dart | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 42bccb6..5c2e1ea 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -40,7 +40,7 @@ android { versionName flutterVersionName testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" ndk { - abiFilters "armeabi-v7a", "x86" + abiFilters "armeabi-v7a", "arm64-v8a" } } diff --git a/lib/pages/home/home_page.dart b/lib/pages/home/home_page.dart index 0fbb871..8d2d8b6 100644 --- a/lib/pages/home/home_page.dart +++ b/lib/pages/home/home_page.dart @@ -37,7 +37,6 @@ class _HomePageState extends State with AutomaticKeepAliveClientMixin< child:ScopedModelDescendant( builder: (context, child, model) { return Scaffold( - body: _renderTabContent(model), bottomNavigationBar: _renderBottomNavigationBar(model), ); From a1e831f9ea930e56f1a3e11ddb793a5666e6a0cf Mon Sep 17 00:00:00 2001 From: Songlcy Date: Tue, 26 Feb 2019 10:00:51 +0800 Subject: [PATCH 2/5] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新说明 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6d21e0f..4fb727d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Vistor-Flutter 视频类 App -## 博客链接:https://blog.csdn.net/u013718120/article/details/86621278 +## 博客链接:https://songlcy.blog.csdn.net/article/details/86621278 ### 前言 From 36c071741be8149298808435b1be2a8ed086ecb6 Mon Sep 17 00:00:00 2001 From: songxiaoliang <563609104@qq.com> Date: Mon, 4 Mar 2019 11:00:41 +0800 Subject: [PATCH 3/5] =?UTF-8?q?=E6=B7=BB=E5=8A=A0ndk=20abi=20=E6=94=AF?= =?UTF-8?q?=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 5c2e1ea..cc811ff 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -39,8 +39,9 @@ android { versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + // "arm64-v8a"为8代处理器,一般为三星,华为新手机出现。 ndk { - abiFilters "armeabi-v7a", "arm64-v8a" + abiFilters "armeabi-v7a", "armeabi", "x86" } } From 33c877c7bb24d7faa3734858bd6e8aff26a1c087 Mon Sep 17 00:00:00 2001 From: Songlcy Date: Mon, 4 Mar 2019 11:06:34 +0800 Subject: [PATCH 4/5] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E9=80=82=E9=85=8D?= =?UTF-8?q?=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 添加适配说明 --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 4fb727d..1515e2a 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,14 @@ ##### 链接下载Apk安装 https://www.pgyer.com/poE0 + +【注】如果安装apk后,启动发生闪退现象,原因是由于手机 ARM 处理器兼容问题。一般会发生在新款三星、华为等第8代处理器手机,此时可以找到 app/build.gradle 文件,手动修改如下代码: +```xml + // "arm64-v8a"为8代处理器,一般为三星,华为新手机出现。 + ndk { + abiFilters "armeabi-v7a", "armeabi", "arm64-v8a" + } +``` ### 模块 1.开发环境: From 9f5e0e59bf0224f4a2b3298dcb536578d32be47e Mon Sep 17 00:00:00 2001 From: Songlcy Date: Fri, 15 Nov 2019 09:30:28 +0800 Subject: [PATCH 5/5] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 更新 --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 1515e2a..3a351aa 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,6 @@ ## 博客链接:https://songlcy.blog.csdn.net/article/details/86621278 -### 前言 - -##### 扫码安装Apk体验 - - ##### 链接下载Apk安装 https://www.pgyer.com/poE0