Skip to content

Instantly share code, notes, and snippets.

View tugceaktepe's full-sized avatar
🏠
Working from home

Tugce Aktepe tugceaktepe

🏠
Working from home
  • Trendyol
  • Istanbul
View GitHub Profile
@tugceaktepe
tugceaktepe / gitlab-ci.yml
Created June 18, 2023 14:12
instrumentedTests job in gitlab-ci.yml
instrumentedTests:
stage: uiTest
script:
- ./gradlew connectedDebugAndroidTest
tags:
- <gitlab-linux-runner-tag>
@tugceaktepe
tugceaktepe / gitlab-ci.yml
Created June 18, 2023 14:26
run emulator with docker-image
image: registry.xxx.yy-qemu-enabled-image
stages:
- test
instrumentedTests:
stage: test
script:
# create the emulator
- echo no | avdmanager create avd -n test -k "system-images;android-${EMULATOR_VERSION};default;x86_64"
@tugceaktepe
tugceaktepe / MyFlavor.kt
Created July 12, 2023 20:52
module&&flavor buildconfig management
import com.android.build.api.dsl.ApplicationExtension
import com.android.build.api.dsl.ApplicationProductFlavor
import com.android.build.api.dsl.CommonExtension
import com.android.build.api.dsl.ProductFlavor
import org.gradle.api.Project
@Suppress("EnumEntryName")
enum class FlavorDimension {
contentType