Skip to content

Commit

Permalink
build beta
Browse files Browse the repository at this point in the history
  • Loading branch information
foobnix committed Feb 12, 2019
1 parent 282e504 commit 01d24f8
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Builder/all-beta.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/usr/bin/env bash

cd ../
./gradlew clean assembleBetaRelease a_copyApks

./remove_all.sh
./install_all.sh
11 changes: 9 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apply plugin: 'com.android.application'

ext {
codeNumber = 950
codeNumber = 951
db = 8
versionNumber = "8.0.2"
versionNumber = "8.0.4"
}

android {
Expand Down Expand Up @@ -183,7 +183,14 @@ android {

}

task a_deleteApks(type: Delete) {

//delete fileTree(dir: 'app/styles' , include: '**/*.css')
}

task a_copyApks(type: Copy) {
delete fileTree("/home/ivan-dev/Dropbox/FREE_PDF_APK/testing").include("*.apk")

from file("build/outputs/apk/beta/release")
include "*.apk"
into file("/home/ivan-dev/Dropbox/FREE_PDF_APK/testing")
Expand Down

0 comments on commit 01d24f8

Please sign in to comment.