From 4417ab37e0e16663bde81efd5207c0e1929b881a Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Fri, 17 Jan 2020 15:01:18 +0100 Subject: Move the Gradle integration tests back to `:runners` --- .../kotlin/org/example/kotlin/mixed/free/AdActivity.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 runners/gradle-integration-tests/testData/androidMultiFlavourApp/app/src/free/kotlin/org/example/kotlin/mixed/free/AdActivity.kt (limited to 'runners/gradle-integration-tests/testData/androidMultiFlavourApp/app/src/free/kotlin') diff --git a/runners/gradle-integration-tests/testData/androidMultiFlavourApp/app/src/free/kotlin/org/example/kotlin/mixed/free/AdActivity.kt b/runners/gradle-integration-tests/testData/androidMultiFlavourApp/app/src/free/kotlin/org/example/kotlin/mixed/free/AdActivity.kt new file mode 100644 index 00000000..b0b980fd --- /dev/null +++ b/runners/gradle-integration-tests/testData/androidMultiFlavourApp/app/src/free/kotlin/org/example/kotlin/mixed/free/AdActivity.kt @@ -0,0 +1,14 @@ +package org.example.kotlin.mixed.free + +import android.os.Bundle +import android.app.Activity +import org.example.kotlin.mixed.R + +class AdActivity : Activity() { + + override fun onCreate(savedInstanceState: Bundle?) { + super.onCreate(savedInstanceState) + setContentView(R.layout.activity_ad) + } + +} -- cgit