voip-callkit 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +14 -42
- package/package.json +1 -1
package/android/build.gradle
CHANGED
@@ -1,58 +1,30 @@
|
|
1
|
-
|
2
|
-
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.1'
|
3
|
-
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.2.0'
|
4
|
-
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.2'
|
5
|
-
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.3.0'
|
6
|
-
}
|
1
|
+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
7
2
|
|
8
3
|
buildscript {
|
4
|
+
|
9
5
|
repositories {
|
10
6
|
google()
|
11
7
|
jcenter()
|
12
8
|
}
|
13
9
|
dependencies {
|
14
10
|
classpath 'com.android.tools.build:gradle:4.2.1'
|
11
|
+
classpath 'com.google.gms:google-services:4.3.5'
|
12
|
+
classpath 'com.google.gms:google-services:4.3.13'
|
13
|
+
|
14
|
+
// NOTE: Do not place your application dependencies here; they belong
|
15
|
+
// in the individual module build.gradle files
|
15
16
|
}
|
16
17
|
}
|
17
18
|
|
18
|
-
apply
|
19
|
+
apply from: "variables.gradle"
|
19
20
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
|
25
|
-
versionCode 1
|
26
|
-
versionName "1.0"
|
27
|
-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
28
|
-
}
|
29
|
-
buildTypes {
|
30
|
-
release {
|
31
|
-
minifyEnabled false
|
32
|
-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
33
|
-
}
|
34
|
-
}
|
35
|
-
lintOptions {
|
36
|
-
abortOnError false
|
37
|
-
}
|
38
|
-
compileOptions {
|
39
|
-
sourceCompatibility JavaVersion.VERSION_1_8
|
40
|
-
targetCompatibility JavaVersion.VERSION_1_8
|
21
|
+
allprojects {
|
22
|
+
repositories {
|
23
|
+
google()
|
24
|
+
jcenter()
|
41
25
|
}
|
42
26
|
}
|
43
27
|
|
44
|
-
|
45
|
-
|
46
|
-
mavenCentral()
|
47
|
-
jcenter()
|
48
|
-
}
|
49
|
-
|
50
|
-
|
51
|
-
dependencies {
|
52
|
-
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
53
|
-
implementation project(':capacitor-android')
|
54
|
-
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
|
55
|
-
testImplementation "junit:junit:$junitVersion"
|
56
|
-
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
|
57
|
-
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
|
28
|
+
task clean(type: Delete) {
|
29
|
+
delete rootProject.buildDir
|
58
30
|
}
|