mirror of
https://github.com/fankes/termux-app.git
synced 2025-10-19 01:49:25 +08:00
Compare commits
5 Commits
20250602V1
...
aca6aa2ff6
Author | SHA1 | Date | |
---|---|---|---|
|
aca6aa2ff6 | ||
|
7bceab88e2 | ||
|
2c1bd650b0 | ||
|
4a9ad910dd | ||
62495482c0
|
23
.github/workflows/dependency-submission.yml
vendored
Normal file
23
.github/workflows/dependency-submission.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Automatic Dependency Submission
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ 'master' ]
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
dependency-submission:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v4
|
||||
- name: Setup Java
|
||||
uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: 'temurin'
|
||||
java-version: 17
|
||||
- name: Generate and submit dependency graph
|
||||
uses: gradle/actions/dependency-submission@v4
|
1
SECURITY.md
Normal file
1
SECURITY.md
Normal file
@@ -0,0 +1 @@
|
||||
Check https://termux.dev/security for info on Termux security policies and how to report vulnerabilities.
|
@@ -41,8 +41,8 @@ android {
|
||||
applicationId "com.termux"
|
||||
minSdkVersion project.properties.minSdkVersion.toInteger()
|
||||
targetSdkVersion project.properties.targetSdkVersion.toInteger()
|
||||
versionCode 118
|
||||
versionName "0.118.0"
|
||||
versionCode 1002 // from official app version code
|
||||
versionName "0.118.3-local" // from official app version name + "local"
|
||||
|
||||
if (appVersionName) versionName = appVersionName
|
||||
validateVersionName(versionName)
|
||||
@@ -89,6 +89,9 @@ android {
|
||||
minifyEnabled true
|
||||
shrinkResources false // Reproducible builds
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
|
||||
// Use universal signing config for reproducible builds
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
|
||||
debug {
|
||||
|
Reference in New Issue
Block a user