Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 1 addition & 27 deletions messaging/integration_test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,17 +1,3 @@
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
Expand Down Expand Up @@ -50,7 +36,7 @@ android {

defaultConfig {
applicationId 'com.google.firebase.cpp.messaging.testapp'
minSdkVersion 16
minSdkVersion 26
targetSdkVersion 28
versionCode 1
versionName '1.0'
Expand All @@ -76,15 +62,3 @@ firebaseCpp.dependencies {
}

apply plugin: 'com.google.gms.google-services'

task copyIntegrationTestFiles(type:Exec) {
// If this is running form inside the SDK directory, run the setup script.
if (project.file('../../setup_integration_tests.py').exists()) {
commandLine 'python', '../../setup_integration_tests.py', project.projectDir.toString()
}
else {
commandLine 'echo', ''
}
}

build.dependsOn(copyIntegrationTestFiles)