Ghost Commander update 1.60a1

This commit is contained in:
Licaon_Kter 2020-01-23 13:03:44 +00:00
parent 1aaf99b013
commit 10a692619c
2 changed files with 48 additions and 6 deletions

View file

@ -2,7 +2,7 @@ Categories:
- System
License: GPL-3.0-only
WebSite: https://sites.google.com/site/ghostcommander1
SourceCode: https://sourceforge.net/p/ghostcommander/code
SourceCode: https://sourceforge.net/p/ghostcommander/svn/HEAD/tree/
IssueTracker: https://sourceforge.net/projects/ghostcommander/support
Changelog: https://sites.google.com/site/ghostcommander1/history
Donate: https://sourceforge.net/p/ghostcommander/donate
@ -23,8 +23,8 @@ Description: |-
Requires root: No, but if provided you can remount filesystems and mess around
with system files.
RepoType: srclib
Repo: GhostCommander
RepoType: git-svn
Repo: https://svn.code.sf.net/p/ghostcommander/svn/
Builds:
- versionName: '1.35'
@ -501,6 +501,16 @@ Builds:
scanignore:
- src/com/ghostsq/commander/adapters/CA.java
- versionName: 1.60a1
versionCode: 395
commit: '29'
patch:
- build.patch
gradle:
- free
scanignore:
- src/main/java/com/ghostsq/commander/adapters/CA.java
MaintainerNotes: |-
No commit messages in source repo! No tags. Apks on website can be used to
confirm a release is real. Commit where AndroidManifest is changed usually
@ -508,8 +518,9 @@ MaintainerNotes: |-
The scanignore is for the dex class loading which is used for loading plugins.
ArchivePolicy: 4 versions
As of 1.60a the repo has changed from https://svn.code.sf.net/p/ghostcommander/code/ to https://svn.code.sf.net/p/ghostcommander/svn/
AutoUpdateMode: Version %v
UpdateCheckMode: RepoManifest
CurrentVersion: 1.56.4
CurrentVersionCode: 369
CurrentVersion: 1.60a1
CurrentVersionCode: 395

View file

@ -0,0 +1,31 @@
--- a/build.gradle
+++ b/build.gradle
@@ -1,3 +1,19 @@
+buildscript {
+ repositories {
+ google()
+ jcenter()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.4.2'
+ }
+}
+
+repositories {
+ google()
+ jcenter()
+}
+
apply plugin: 'com.android.application'
android {
@@ -43,6 +59,8 @@
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
+ implementation 'net.lingala.zip4j:zip4j:1.3.3'
+
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'