Skip to content

Commit

Permalink
Clean up configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Iwo Polański committed May 14, 2019
1 parent 81f9105 commit be7ecd6
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions sample/app/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#IntelliJ IDEA
/.idea/**
*.iml
key.json

# Gradle
/.gradle/**
Expand Down
7 changes: 3 additions & 4 deletions sample/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

// apply firebase test lab plugin (after `apply plugin: 'com.android.application'` )
apply plugin: 'firebase.test.lab'

android {

Expand All @@ -24,13 +25,11 @@ android {
}
}

apply plugin: 'firebase.test.lab'

// Setup firebase test lab plugin
firebaseTestLab {
// REQUIRED obtain service key as described inside README
keyFile = file("developer-account.json.enc")
googleProjectId = "mgm-resorts-app"
keyFile = file("key.json")
googleProjectId = "project-name"

// If you want you can ignore test failures
// ignoreFailures = true
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0-beta03'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "firebase.test.lab:plugin:2.2.0-SNAPSHOT"
classpath "firebase.test.lab:plugin:2.1.0"
}
}

Expand Down
1 change: 1 addition & 0 deletions sample/library/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#IntelliJ IDEA
/.idea/**
*.iml
key.json

# Gradle
/.gradle/**
Expand Down
3 changes: 3 additions & 0 deletions sample/library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ android {
// Setup firebase test lab plugin
firebaseTestLab {

keyFile = file("key.json")
googleProjectId = "project-name"

devices {
nexusEmulator {
deviceIds = ["hammerhead"]
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':plugin'//, ':sample'
include ':plugin', ':sample'

0 comments on commit be7ecd6

Please sign in to comment.