aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-android-0/src
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/gradle/projects/it-android-0/src')
-rw-r--r--integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml5
-rw-r--r--integration-tests/gradle/projects/it-android-0/src/main/java/it/android/AndroidSpecificClass.kt16
-rw-r--r--integration-tests/gradle/projects/it-android-0/src/main/java/it/android/IntegrationTestActivity.kt22
3 files changed, 0 insertions, 43 deletions
diff --git a/integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml b/integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml
deleted file mode 100644
index 43894029..00000000
--- a/integration-tests/gradle/projects/it-android-0/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<!--
- ~ Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
- -->
-
-<manifest package="org.jetbrains.dokka.it.android"/>
diff --git a/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/AndroidSpecificClass.kt b/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/AndroidSpecificClass.kt
deleted file mode 100644
index cb9046b1..00000000
--- a/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/AndroidSpecificClass.kt
+++ /dev/null
@@ -1,16 +0,0 @@
-@file:Suppress("unused")
-
-package it.android
-
-import android.content.Context
-import android.util.SparseIntArray
-import android.view.View
-
-/**
- * This class is specific to android and uses android classes like:
- * [Context], [SparseIntArray] or [View]
- */
-class AndroidSpecificClass {
- fun sparseIntArray() = SparseIntArray()
- fun createView(context: Context): View = View(context)
-}
diff --git a/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/IntegrationTestActivity.kt b/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/IntegrationTestActivity.kt
deleted file mode 100644
index 1792818b..00000000
--- a/integration-tests/gradle/projects/it-android-0/src/main/java/it/android/IntegrationTestActivity.kt
+++ /dev/null
@@ -1,22 +0,0 @@
-package it.android
-
-import android.annotation.SuppressLint
-import android.os.Bundle
-import android.widget.TextView
-import androidx.appcompat.app.AppCompatActivity
-
-/**
- * Some Activity implementing [AppCompatActivity] from android x
- */
-class IntegrationTestActivity : AppCompatActivity() {
- /**
- * Will show a small happy text
- */
- @SuppressLint("SetTextI18n")
- override fun onCreate(savedInstanceState: Bundle?) {
- super.onCreate(savedInstanceState)
- val textView = TextView(this)
- textView.text = "I am so happy :)"
- setContentView(textView)
- }
-} \ No newline at end of file