Android Developer
İstanbul / Remote · Tam Zamanlı · 3+ Yıl
AndroidDeveloperJob.kt — AvvaMobile — Android Studio
▶app›Pixel 8 Pro API 35▾
BUILD SUCCESSFULProject▾
▾AvvaMobile
▾app
▸manifests
▾java
▾com.avvamobile.careers
KAndroidDeveloperJob
KPosition
KBenefits
▸res
▾Gradle Scripts
Gbuild.gradle (app)
Gbuild.gradle (project)
KAndroidDeveloperJob.kt×
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// Avva Mobile · Android Takımı · İstanbul / Remote
// Tam Zamanlı · 3+ Yıl Deneyim
package com.avvamobile.careers
import com.avvamobile.Position
import com.avvamobile.Developer
// Tech Stack
val techStack: List<String> = listOf(
"Kotlin",
"Jetpack Compose",
"Android SDK",
"MVVM",
"Hilt",
"Coroutines",
"Retrofit",
"Room"
)
data class AndroidDeveloperJob(
val location: String = "İstanbul / Remote",
val experience: String = "3+ Yıl",
val department: String = "Android"
) : Position {
// Aranan Özellikler
fun hasRequiredSkills(candidate: Developer): Boolean {
// En az 3 yıl Kotlin ve Android geliştirme deneyimi
// Jetpack Compose ve Android SDK hakimiyeti
// MVVM, Clean Architecture ve Dependency Injection (Hilt) deneyimi
// Coroutines ve Flow ile asenkron programlama
// RESTful API ve Retrofit entegrasyonu
// Room Database ile yerel veri yönetimi
// Google Play Store yayınlama süreçleri
// Git versiyon kontrol sistemi
return true
}
// Sorumluluklar
override val responsibilities: List<String> = listOf(
"Kotlin / Jetpack Compose ile Android uygulamaları geliştirme",
"Uygulama performansı, pil tüketimi ve bellek optimizasyonu",
"Google Play Store üzerinden yayın ve güncelleme yönetimi",
"Backend servisleri ile API entegrasyonu",
"Unit test ve UI test yazma",
"Code review süreçlerine aktif katılım",
"Tasarım ekibi ile koordineli çalışma",
"Teknik dokümantasyon hazırlama"
)
// Yan Haklar
val perks: List<String> = listOf(
"Performans primi",
"Yemek kartı",
"Eğitim bütçesi",
"Esnek çalışma saatleri",
"Remote çalışma imkanı",
"Kariyer gelişim fırsatları",
"Modern teknoloji stack"
)
}
✓ Gradle sync finishedAndroidDeveloperJob.kt · Ln 62 Col 1 · UTF-8Kotlin 1.9 · API 35
