ก๊วนซอฟท์แวร์ </softganz> SoftGang (Gang Software)

Web &amp; Software Developer Gang.

617 items(1/62) 2 3 4 5 Next » Last »|
โดย Little Bear on 13 ส.ค. 68 10:06

Create new app

flutter create --org com.yourdomain appname

Change app version

File: pubspec.yaml

version: 1.0.00+1

Create app icon

Add dependencie in file pubspec.yaml

dependencies:
...
flutterlaunchericons: ^0.14.4
And add
flutterlaunchericons:
 imagepath: "assets/icons/logo512.png"
  android: true
  ios: true
  removealphaios: true

Then run command in terminal

# dart run flutterlaunchericons:main

เอาคำว่า "DEBUG" ของเธอคืนไป

ใส่ไว้ใน MaterialApp

debugShowCheckedModeBanner: false

Change AndroidManifest.xml

File: android/app/src/main/AndroidManifest.xml

Change from

<manifest xmlns:android="http://schemas.android.com/apk/res/android">

To

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:dist="http://schemas.android.com/apk/distribution"
    >

Add permission

File: android/app/src/main/AndroidManifest.xml

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESSNETWORKSTATE" />
    <uses-permission android:name="android.permission.WRITEEXTERNALSTORAGE" />
    <uses-permission android:name="android.permission.CAMERA" />
    <uses-permission android:name="android.permission.ACCESSFINELOCATION" />
    <uses-permission android:name="android.permission.ACCESSCOARSELOCATION" />
    <uses-feature android:name="android.hardware.camera" />

Change app label

File: android/app/src/main/AndroidManifest.xml

        android:label="My App"

InAppWebView

Add InAppWebView provider

        <provider
            android:name="com.pichillilorenzo.flutterinappwebviewandroid.InAppWebViewFileProvider"
            android:authorities="${applicationId}.flutterinappwebviewandroid.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILEPROVIDERPATHS"
                android:resource="@xml/provider_paths" />
        </provider>

Flutter command

Clean

flutter clean

Get

flutter pub get

Run release

flutter run --release

Add dependencies แล้ว แต่ import package ไม่ได้

flutter packages get
Close project and re-open project

Build app for Play Store

Generate JKS file : ถ้ายังไม่มีการสร้างไฟล์ .jks ให้สร้างขึ้นมาก่อน

keytool -genkey -v -keystore /Users/name/appname.jks -keyalg RSA -keysize 2048 -validity 10000 -alias release
ดูข้อมูลในไฟล์ .jks
keytool -v -list -keystore appname.jks
ดูข้อมูลในไฟล์ .apk
keytool -printcert -jarfile appname.apk

#กำหนดการ keystore ไว้ใน app สร้างไฟล์ [project]/android/key.properties แล้ว copy code ด้านล่างไปใส่

storePassword=<password from previous step>
keyPassword=<password from previous step>
keyAlias=upload
storeFile=<location of the key store file, such as /Users/<user name>/upload-keystore.jks>

คำเตือน เก็บรักษาไฟล์ key.properties ไว้ให้ดี อย่างส่งขึ้น git เด็ดขาด

กำหนดค่าเพื่อ signing ใน gradle

1.แก้ไขไฟล์ [project]/android/app/build.gradle.kts

import java.util.Properties
import java.io.FileInputStream
val keyProperties = Properties().apply {
    val file = rootProject.file("key.properties")
    if (file.exists()) {
        load(FileInputStream(file))
    }
}

android { ... }

2.หา buildTypes

   buildTypes {
       release {
           // TODO: Add your own signing config for the release build.
           // Signing with the debug keys for now,
           // so flutter run --release works.
           signingConfig signingConfigs.debug
       }
   }
แทนที่ด้วย
    signingConfigs {
        create("release") {
            keyAlias = keyProperties["keyAlias"] as String
            keyPassword = keyProperties["keyPassword"] as String
            storeFile = keyProperties["storeFile"]?.let { file(it) }
            storePassword = keyProperties["storePassword"] as String
        }
        // You can also create other signing configs like "debug" if needed
    }
    buildTypes {
        release {
            signingConfig = signingConfigs.getByName("release")
            // signingConfig signingConfigs.release
        }
    }

Build

flutter build appbundle

ผลลัพท์ของการ build จะอยู่ที่

build/app/outputs/bundle/release/app-release.aab

ติดขั้นตอนอัพโหลดขึ้น play store

"Your Android App Bundle is signed with the wrong key. Ensure that your App Bundle is signed with the correct signing key and try again. Your App Bundle is expected to be signed with the certificate with fingerprint"

ลองหาทางแก้ไข ก็ไม่หาย แต่พอลองอัพหลายครั้ง ก็ยังขึ้น error แต่ปุ่มให้ SAVE สามารถใช้งานได้ ก็เลยผ่าน

ลองอัพ version ใหม่ ปรากฎว่า ไม่ขึ้น error

App Permission

การจัดการ App Permission

หัวข้ออื่น

ที่มา

ที่มา:

โดย Little Bear on 23 ก.ค. 68 08:56

Backup to remote server

Connect remove server via folder

sshfs username@example.com:/folder localfolder

Backup with rsync

rsync -trv /folder/src/ /folder/dest/

Backup with copy

cp -R /folder/src /folder/dest &

โดย Little Bear on 26 เม.ย. 68 14:29

Shortcut

  • Command palette : Cmd ⌘ + P
  • Warp text : Option ⌥ + Z
  • Undo: Cmd ⌘ + Z
  • Redo: Cmd ⌘ + Shift ⇧ + Z
  • Bookmark next: Cmd ⌘ + Option ⌥ + L
  • Bookmark previous: Cmd ⌘ + Option ⌥ + J
  • Bookmark toggle: Cmd ⌘ + Option ⌥ + K

Settings

  • Text wrapping by default -> "editor.wordWrap": "on"
  • Access the json file with the settings by typing CTRL + SHIFT + P, then typing 'open default settings (JSON)'

How can I customize the space-to-tab conversion factor in VS Code?

Code → Preferences → Settings

// The number of spaces a tab is equal to. This setting is overridden
// based on the file contents when editor.detectIndentation is true.
"editor.tabSize": 2,

// Insert spaces when pressing Tab. This setting is overriden // based on the file contents when editor.detectIndentation is true. "editor.insertSpaces": false,

// When opening a file, editor.tabSize and editor.insertSpaces // will be detected based on the file contents. Set to false to keep // the values you've explicitly set, above. "editor.detectIndentation": false

ที่มา How can I customize the tab-to-space conversion factor in VS Code?

โดย Little Bear on 23 ก.พ. 68 13:59


View

ตรวจสอบ OS version

cat /etc/os-release

ขั้นตอน 1: Update เวอร์ชั่นปัจจุบันของ Ubuntu

***

sudo apt update && apt upgrade -y

ขั้นตอน 2: เตรียมสำหรับการ upgrade:

***

sudo apt install update-manager-core

ขั้นตอน 3: Run the Upgrade:

***

sudo do-release-upgrade

***

ขั้นตอน 4: Post-Upgrade Cleanup:

***

sudo apt autoremove && apt clean

ขั้นตอน 5: ตรวจสอบผลการอัพเกรด: ***

cat /etc/os-release

***

หากเกิดความผิดพลาด สามารถเปลี่ยน sources แล้ว update

First, ensure that all the contents of /etc/apt/sources.list and /etc/apt/sources.list.d/ubuntu.sources contain the word noble instead of jammy. If it contains jammy, replace that with noble.

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo sed -i 's/jammy/noble/g' /etc/apt/sources.list
sudo sed -i 's/jammy/noble/g' /etc/apt/sources.list.d/ubuntu.sources
sudo apt update
sudo apt full-upgrade

หลังจาก upgrade แล้ว start apache ไม่ได้ เนื่องจากมีการเปลี่ยน php version ให้สร้างลิงก์ไฟล์ของ apache config ใหม่

cd /etc/apache2/mods-enable
ln -s php8.1.conf ../mods-avaliable/php8.1.conf
ln -s php8.1.load ../mods-avaliable/php8.1.load

แล้ว restart apache

systemctl restart apache2

Upgrade MariaDB

apt upgrade mariadb-server
apt install mariadb-server
โดย Little Bear on 23 ต.ค. 67 15:25

Pure White Color

White
#FFFFFF
Ivory
#FFFFF0
Pearl
#FCFCF7
Marble
#F2F8FC
Off White
#FAF9F6
Lavender
#F4F1F8
Alice Blue
#F0F8FF
Parchment
#FBF5DF
Cold Steel
#F8F7F4
Egg White
#FDFDFD

Gray Color

Black
#000000
Charcoal Gray
#171717
Oil Blank
#0C0C0C
Obsidian
#0B1215
Midnight Blue
#101720
Dark Slate Gray
#0D1717
Rich Black
#020D19
Deep Navy Blue
#011222

Charcoal
#21242A

Licorice
#161110
Deep
#101923
Obsidian
#08100C
Smokie
#23262A
Alien
#01A2228
Neutral
#232325

โดย Little Bear on 5 ก.ย. 67 11:58

ตารางที่เกี่ยวข้อง

  • tag : taggroup => project:supportType, catId
  • glcode : glcode
  • project_gl : glcode
  • project_dev : category
  • project : supportType is value
  • project_tr : formId="info", part="project", refCode is value
โดย Little Bear on 9 ส.ค. 67 17:52

Backup table

mysqldump  --user=username --password db table1 table2 > file.sql

database exclude

mysqldump  --user=username --password --databases db  --ignore-table=db.table1  --ignore-table=db.table2 > file.sql

โดย Little Bear on 9 ส.ค. 67 10:02

เจอข่าวจาก blognone.com ว่า "กูเกิลเปิดตัว Pigweed SDK ชุดพัฒนาคอมพิวเตอร์ embedded เต็มรูปแบบ รองรับ RP2350" กะว่าจะลองดูสักหน่อย

อ่านเอกสารแนะนำได้จาก Introducing the Pigweed SDK: A modern embedded development suite

เริ่มต้นด้วยการ Clone Sense showcase repo และลองติดตั้งจาก tutorial

ไว้หาโอกาสลองใช้งานอีกที แล้วค่อยมารายงานเพิมเติม

โดย Little Bear on 30 ก.ค. 67 12:24

กำลังศึกษาเรื่อง Modules บน JavaScript อยู่

ที่มา

617 items(1/62) 2 3 4 5 Next » Last »|