上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 186 下一页
摘要: 一,从官网下载 官方站: https://golang.google.cn/dl/ 从命令行下载: $ wget https://golang.google.cn/dl/go1.25.1.linux-amd64.tar.gz 二,安装 解压: $ tar -zxvf go1.25.1.linux-a 阅读全文
posted @ 2025-09-20 09:46 刘宏缔的架构森林 阅读(406) 评论(0) 推荐(0)
摘要: 一,创建项目 $ mkdir mediabank $ cd mediabank/ $ go mod init mediabank go: creating new go.mod: module mediabank $ go get github.com/gin-gonic/gin@latest 二, 阅读全文
posted @ 2025-09-20 09:46 刘宏缔的架构森林 阅读(38) 评论(0) 推荐(0)
摘要: 一,代码: 在activity中增加一行: getSupportActionBar()?.hide() 例子: class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(23) 评论(0) 推荐(0)
摘要: 一,引入lifecycle 1,libs.versions.toml [versions] lifecycle = "2.9.1" [libraries] # lifecycle androidx-lifecycle-livedata-core-ktx = { group = "androidx.l 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(43) 评论(0) 推荐(0)
摘要: 一,安装第三方库 build.gradle.kts中添加 implementation("com.squareup.retrofit2:retrofit:2.9.0") implementation("com.squareup.retrofit2:converter-gson:2.9.0") imp 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(32) 评论(0) 推荐(0)
摘要: 一,报错信息: e: file:///Users/liuhongdi/StudioProjects/Okdemo2/app/src/main/java/com/example/okdemo2/fragment/ApiService.kt:14:67 This declaration needs op 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(141) 评论(0) 推荐(0)
摘要: 一,切换gradle版本: 选择相应的gradle版本: 实际上修改了gradle-wrapper.properties 如下: #Thu Sep 04 11:05:05 CST 2025 distributionBase=GRADLE_USER_HOME distributionPath=wrap 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(203) 评论(0) 推荐(0)
摘要: 一,报错信息: org.jetbrains.kotlin.util.FileAnalysisException: While analysing /Users/liuhongdi/StudioProjects/Okdemo2/app/src/main/java/com/example/okdemo2 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(651) 评论(0) 推荐(0)
摘要: 一,在项目中添加 Kotlin Serialization 插件和依赖 编辑libs.versions.toml,增加以下内容: [versions] kotlin = "2.0.21" kotlinxSerializationJson = "1.9.0" [libraries] # kotlin 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(182) 评论(0) 推荐(0)
摘要: 一,报错信息: FATAL EXCEPTION: main Process: com.example.okdemo2, PID: 3158 java.net.UnknownServiceException: CLEARTEXT communication to www.testit.net not 阅读全文
posted @ 2025-09-06 22:07 刘宏缔的架构森林 阅读(85) 评论(0) 推荐(0)
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 186 下一页