aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-android-0/src
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-11-10 11:46:54 +0100
committerGitHub <noreply@github.com>2023-11-10 11:46:54 +0100
commit8e5c63d035ef44a269b8c43430f43f5c8eebfb63 (patch)
tree1b915207b2b9f61951ddbf0ff2e687efd053d555 /integration-tests/gradle/projects/it-android-0/src
parenta44efd4ba0c2e4ab921ff75e0f53fc9335aa79db (diff)
downloaddokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.gz
dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.tar.bz2
dokka-8e5c63d035ef44a269b8c43430f43f5c8eebfb63.zip
Restructure the project to utilize included builds (#3174)
* Refactor and simplify artifact publishing * Update Gradle to 8.4 * Refactor and simplify convention plugins and build scripts Fixes #3132 --------- Co-authored-by: Adam <897017+aSemy@users.noreply.github.com> Co-authored-by: Oleg Yukhnevich <whyoleg@gmail.com>
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