Skip to content

Commit

Permalink
Merge pull request #70 from ArcticFoxPro/master
Browse files Browse the repository at this point in the history
新增首页“本机应用”信息、修复了一些已知问题
  • Loading branch information
klxiaoniu authored Aug 28, 2024
2 parents 0d961b8 + 8192f50 commit 7c8248f
Show file tree
Hide file tree
Showing 35 changed files with 786 additions and 219 deletions.
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
/app/release
.idea/misc.xml
.idea/.name
/.idea
/app/debug
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,19 +211,22 @@ QQ 版本列表实用工具采用 [GNU Affero General Public License Version 3](

QQ 版本列表实用工具的诞生离不开以下开源项目,感谢以下开源项目的作者和贡献者:

- [Material Components for Android](https://github.com/material-components/material-components-android/),Licensed under [Apache License Version 2.0](https://github.com/material-components/material-components-android/blob/master/LICENSE)
- [Android Jetpack](https://github.com/androidx/androidx/),Licensed under [Apache License Version 2.0](https://github.com/androidx/androidx/blob/androidx-main/LICENSE.txt)
- [Material Components for Android(Android Open Source Project)](https://github.com/material-components/material-components-android/),Licensed under [Apache License Version 2.0](https://github.com/material-components/material-components-android/blob/master/LICENSE)
- [Android Jetpack(Android Open Source Project)](https://developer.android.com/jetpack),Licensed under [Apache License Version 2.0](https://github.com/androidx/androidx/blob/androidx-main/LICENSE.txt)
- [Remix Icon(Remix Design)](https://remixicon.com/),Licensed under [Apache License Version 2.0](https://remixicon.com/license)
- [OkHttp(Square)](https://square.github.io/okhttp/),Licensed under [Apache License Version 2.0](https://github.com/square/okhttp/blob/master/LICENSE.txt)
- [Kotlin(JetBrains)](https://kotlinlang.org/),Licensed under [Apache License Version 2.0](https://github.com/JetBrains/kotlin/blob/master/license%2FREADME.md)
- [Gson(Google)](https://github.com/google/gson/),Licensed under [Apache License Version 2.0](https://github.com/google/gson/blob/master/LICENSE)
- [Coil](https://coil-kt.github.io/coil/),Licensed under [Apache License Version 2.0](https://github.com/coil-kt/coil/blob/main/LICENSE.txt)
- [Eclipse Temurin™](https://adoptium.net/zh-CN/temurin/),Licensed under GNU General Public License, version 2 with the Classpath Exception
- [Eclipse Temurin™](https://adoptium.net/temurin/),Licensed under GNU General Public License, version 2 with the Classpath Exception
- [Oracle JDK](https://www.oracle.com/java/technologies/downloads/),Licensed under [Oracle No-Fee Terms and Conditions](https://www.java.com/freeuselicense)
- [JetBrains Runtime](https://github.com/JetBrains/JetBrainsRuntime),Licensed under [GNU General Public License, version 2](https://github.com/JetBrains/JetBrainsRuntime/blob/main/LICENSE)
- [JetBrains Runtime](https://github.com/JetBrains/JetBrainsRuntime),Licensed under [GNU General Public License Version 2](https://github.com/JetBrains/JetBrainsRuntime/blob/main/LICENSE)
- [Kotlin Serialization](https://github.com/Kotlin/kotlinx.serialization),Licensed under [Apache License Version 2.0](https://github.com/Kotlin/kotlinx.serialization/blob/master/LICENSE.txt)
- [Get QQ Update Link(owo233)](https://github.com/callng/GQUL),Licensed under [The Unlicense](https://github.com/callng/GQUL/blob/master/LICENSE)
- [Paris(Airbnb)](https://github.com/airbnb/paris),Licensed under [Apache License Version 2.0](https://github.com/airbnb/paris/blob/master/LICENSE)
- [Apache Maven](https://maven.apache.org/),Licensed under [Apache License Version 2.0](https://github.com/apache/maven/blob/master/LICENSE)
- [Gradle](https://gradle.org/),Licensed under [Apache License Version 2.0](https://github.com/gradle/gradle/blob/master/LICENSE)
- [Material Symbols / Material Icons(Google)](https://fonts.google.com/icons),Licensed under [Apache License Version 2.0](https://github.com/google/material-design-icons/blob/master/LICENSE)

## 孪生项目

Expand Down
8 changes: 7 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,13 @@ android {
minSdk = 24
targetSdk = 35
versionCode = gitCommitCount
versionName = "1.3.5-$gitCommitHash"
versionName = "1.3.6-$gitCommitHash"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
arguments += listOf("-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON")
}
}
}

signingConfigs {
Expand Down Expand Up @@ -102,4 +107,5 @@ dependencies {
implementation("androidx.datastore:datastore-preferences:1.1.1")
implementation("com.google.code.gson:gson:2.11.0")
implementation("com.airbnb.android:paris:2.0.2")
implementation("org.apache.maven:maven-artifact:3.9.9")
}
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

<queries>
<package android:name="com.tencent.mobileqq" />
<package android:name="com.tencent.tim" />
</queries>

<application
Expand All @@ -39,7 +40,7 @@
tools:targetApi="35">
<activity
android:name=".ui.MainActivity"
android:configChanges="orientation|screenSize"
android:configChanges="orientation|screenSize|screenLayout"
android:exported="true"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class TipTimeApplication : Application() {

const val SHIPLY_DEFAULT_APPID = "537230561"
const val SHIPLY_DEFAULT_SDK_VERSION = "1.3.36-RC01"

const val EARLIEST_ACCESSIBILITY_VERSION = false
}

override fun onCreate() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@ data class QQVersionBean(

var jsonString: String = "",
var displayType: Int = 0, // 0为收起
var displayInstall: Boolean = false // false 为不展示
var displayInstall: Boolean = false, // false 为不展示
var isAccessibility: Boolean = false
)
Loading

0 comments on commit 7c8248f

Please sign in to comment.