File tree Expand file tree Collapse file tree 1 file changed +27
-16
lines changed Expand file tree Collapse file tree 1 file changed +27
-16
lines changed Original file line number Diff line number Diff line change 1
1
group ' com.optimizely.optimizely_flutter_sdk'
2
2
version ' 1.0'
3
3
4
- buildscript {
4
+ def version_name = System . getenv(' TRAVIS_TAG' )
5
+ if (version_name != null ) {
6
+ rootProject. ext. version_name = version_name
7
+ } else {
8
+ rootProject. ext. version_name = ' debugVersion'
9
+ }
5
10
6
- def version_name = System . getenv(' TRAVIS_TAG' )
7
- if (version_name != null ) {
8
- rootProject. ext. version_name = version_name
9
- } else {
10
- rootProject. ext. version_name = ' debugVersion'
11
- }
12
11
13
- repositories {
14
- google()
15
- mavenCentral()
16
- }
12
+ // buildscript {
13
+
14
+ // def version_name = System.getenv('TRAVIS_TAG')
15
+ // if (version_name != null) {
16
+ // rootProject.ext.version_name = version_name
17
+ // } else {
18
+ // rootProject.ext.version_name = 'debugVersion'
19
+ // }
20
+
21
+ // repositories {
22
+ // google()
23
+ // mavenCentral()
24
+ // }
25
+
26
+ // dependencies {
27
+ // classpath 'com.android.tools.build:gradle:7.2.1'
28
+ // }
29
+ // }
17
30
18
- dependencies {
19
- classpath ' com.android.tools.build:gradle:7.2.1'
20
- }
21
- }
22
31
configurations {
23
32
all* . exclude group : ' com.google.guava' , module : ' listenablefuture'
24
33
}
@@ -29,7 +38,9 @@ rootProject.allprojects {
29
38
}
30
39
}
31
40
32
- apply plugin : ' com.android.library'
41
+ plugins {
42
+ id " com.android.library"
43
+ }
33
44
34
45
ext {
35
46
compile_sdk_version = 32
You can’t perform that action at this time.
0 commit comments