1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "20"
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
signingConfigs {
release {
storeFile project.hasProperty('storeFileProperty') ? file(storeFileProperty) : null
storePassword project.hasProperty('storePasswordProperty') ? storePasswordProperty : ""
keyAlias project.hasProperty('keyAliasProperty') ? keyAliasProperty : ""
keyPassword project.hasProperty('keyPasswordProperty') ? keyPasswordProperty : ""
}
}
buildTypes {
release {
//runProguard true
signingConfig signingConfigs.release.isSigningReady() ? signingConfigs.release : signingConfigs.debug
}
}
lintOptions {
abortOnError false
}
sourceSets {
main {
assets.srcDirs = ['assets', 'ovpnlibs/assets']
jniLibs.srcDirs = ['ovpnlibs/jniLibs']
jni.srcDirs = [] //disable automatic ndk-build
}
debug {
assets.srcDirs = ['src/debug/assets']
}
}
//check.dependsOn connectedCheck
}
dependencies {
// androidTestCompile 'com.android.support:support-v4:20+'
// androidTestCompile 'com.android.support:appcompat-v7:20.+'
androidTestCompile 'com.jayway.android.robotium:robotium-solo:5.2.1'
compile 'com.intellij:annotations:12.0'
}
def processFileInplace(file, Closure processText) {
def text = file.text
file.write(processText(text))
}
task checkoutStrippedIcsOpenVPN ( type: Copy ) {
//FIXME Checkout ics-openvpn-stripped from branch "ics-openvpn-upstream"
from '/tmp/bitmask_android_tmp/ics-openvpn-stripped'
into '../ics-openvpn-stripped'
}
task copyIcsOpenVPNClasses( type: Copy, dependsOn: 'checkoutStrippedIcsOpenVPN' ) {
from ('../ics-openvpn-stripped/main/') {
include '**/*.java'
include '**/*.aidl'
include '**/strings.xml'
include '**/log_*.xml'
include '**/vpnstatus.xml'
include '**/styles.xml'
include '**/dimens.xml'
include '**/logmenu.xml'
rename 'strings.xml', 'strings-icsopenvpn.xml'
filter {
line -> line.replaceAll('de.blinkt.openvpn.R', 'se.leap.bitmaskclient.R')
}
filter {
line -> line.replaceAll('de.blinkt.openvpn.BuildConfig', 'se.leap.bitmaskclient.BuildConfig')
}
filter {
line -> line.replace('package de.blinkt.openvpn;', 'package de.blinkt.openvpn;\n\nimport se.leap.bitmaskclient.R;')
}
filter {
line -> line.replace('package de.blinkt.openvpn.fragments;', 'package de.blinkt.openvpn.fragments;\n\nimport se.leap.bitmaskclient.R;')
}
filter {
line -> line.replaceAll('.*name="app".*', '')
}
} into '.'
}
// thanks to http://pleac.sourceforge.net/pleac_groovy/fileaccess.html
task removeDuplicatedStrings( dependsOn: 'copyIcsOpenVPNClasses' ) << {
new File('.').eachFileRecurse {
if(it.name.equals('strings.xml')) {
def ics_openvpn_file = file(it.path.replace('strings.xml', 'strings-icsopenvpn.xml'))
if(ics_openvpn_file.exists()) {
def ics_openvpn_strings_names = (new XmlParser()).parse(ics_openvpn_file)
def current_file = it
ics_openvpn_strings_names.string.each {
processFileInplace(current_file) { text ->
text.replaceAll('.*name=\"' + it.attribute('name') + '\".*(\n)*.*string>.*\n+', '')
}
}
}
}
}
}
task mergeUntranslatable( type: Copy, dependsOn: 'removeDuplicatedStrings') {
from ('../ics-openvpn-stripped/main/') {
include '**/untranslatable.xml'
rename 'untranslatable.xml', 'untranslatable-icsopenvpn.xml'
} into '.'
def bitmask_untranslatable = file('src/main/res/values/untranslatable.xml')
def ics_openvpn_untranslatable = new File(bitmask_untranslatable.path.replace('untranslatable.xml', 'untranslatable-icsopenvpn.xml'))
ics_openvpn_untranslatable.createNewFile()
def string_continuation = false;
ics_openvpn_untranslatable.eachLine { text ->
if(text.contains('string name=')) {
if(!bitmask_untranslatable.text.contains(text))
bitmask_untranslatable << text
if(text.contains('</string>'))
string_continuation = true
}
else if(string_continuation) {
bitmask_untranslatable << text
}
if(text.contains('</string>')) {
string_continuation = false
bitmask_untranslatable << System.getProperty("line.separator")
}
}
bitmask_untranslatable.write(bitmask_untranslatable.text.replaceAll("</resources>", ""))
bitmask_untranslatable << "</resources>"
delete ics_openvpn_untranslatable
}
task updateIcsOpenVpn( type: Copy, dependsOn: 'mergeUntranslatable') {
from('../ics-openvpn-stripped/main') {
include 'openvpn/**'
include 'lzo/**'
include 'jni/**'
include 'misc/**'
include 'ovpn3/**'
include 'snappy/**'
} into '.'
}
//build.dependsOn ':app:mergeUntranslatable'
|