Skip to content

Commit e94dc2d

Browse files
authored
Merge pull request #42 from optimizely/no-optly-repo
Remove optly repo
2 parents 5902c84 + f6b9d9e commit e94dc2d

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

build.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@ buildscript {
4343
allprojects {
4444
repositories {
4545
jcenter()
46-
maven {
47-
url "http://optimizely.bintray.com/optimizely"
48-
}
4946
}
5047
}
5148

test-app/build.gradle

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,18 @@ android {
2626
}
2727
}
2828

29-
repositories {
30-
maven { url 'http://dl.bintray.com/optimizely/optimizely' }
31-
}
32-
3329
dependencies {
3430
// Includes SST Java core, event handler, and user experiment record
35-
compile project(':android-sdk')
36-
// compile 'com.optimizely.ab:android-sdk:0.1.2-SNAPSHOT'
31+
// compile project(':android-sdk')
32+
compile 'com.optimizely.ab:android-sdk:0.2.0'
3733
compile 'com.android.support:appcompat-v7:24.2.1'
3834
compile 'com.android.support:design:24.2.1'
3935

4036
testCompile "junit:junit:$junit_ver"
4137
testCompile "org.mockito:mockito-core:$mockito_ver"
4238
testCompile "com.noveogroup.android:android-logger:$android_logger_ver"
43-
testCompile project(':android-sdk')
39+
testCompile 'com.optimizely.ab:android-sdk:0.2.0'
40+
// testCompile project(':android-sdk')
4441

4542
androidTestCompile("com.android.support.test:runner:$support_test_runner_ver")
4643
androidTestCompile "com.android.support:support-annotations:24.2.1"
@@ -51,5 +48,6 @@ dependencies {
5148
androidTestCompile "org.mockito:mockito-core:$mockito_ver"
5249
androidTestCompile "com.google.dexmaker:dexmaker:$dexmaker_ver"
5350
androidTestCompile "com.google.dexmaker:dexmaker-mockito:$dexmaker_ver"
54-
androidTestCompile project(':android-sdk')
51+
androidTestCompile 'com.optimizely.ab:android-sdk:0.2.0'
52+
// androidTestCompile project(':android-sdk')
5553
}

test-app/src/main/res/layout/activity_main.xml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,14 @@
1010
android:paddingTop="@dimen/activity_vertical_margin"
1111
tools:context=".MainActivity">
1212

13-
<Button
14-
android:id="@+id/button_1"
15-
android:layout_width="wrap_content"
16-
android:layout_height="wrap_content"
17-
android:layout_centerInParent="true"
18-
android:text="@string/main_act_button_1_text_default"/>
13+
<Button
14+
android:id="@+id/button_1"
15+
android:layout_width="wrap_content"
16+
android:layout_height="wrap_content"
17+
android:layout_centerInParent="true"
18+
android:text="@string/main_act_button_1_text_default"/>
19+
20+
1921

2022
<TextView
2123
android:id="@+id/text_view_1"

0 commit comments

Comments
 (0)