Skip to content

Commit f678c42

Browse files
Rawakl
andcommitted
Add proto datastore dependency
Co-authored-by: Kalle Lindström <karl.lindstrom@mullvad.net>
1 parent 83b08bf commit f678c42

File tree

4 files changed

+36
-14
lines changed

4 files changed

+36
-14
lines changed

android/app/build.gradle.kts

+20-8
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ plugins {
1212
alias(libs.plugins.kotlin.parcelize)
1313
alias(libs.plugins.kotlin.ksp)
1414
alias(libs.plugins.compose)
15+
alias(libs.plugins.protobuf.core)
1516

1617
id(Dependencies.junit5AndroidPluginId) version Versions.junit5Plugin
1718
}
@@ -55,11 +56,7 @@ android {
5556
}
5657
}
5758

58-
playConfigs {
59-
register("playStagemoleRelease") {
60-
enabled = true
61-
}
62-
}
59+
playConfigs { register("playStagemoleRelease") { enabled = true } }
6360

6461
androidResources {
6562
@Suppress("UnstableApiUsage")
@@ -222,8 +219,7 @@ android {
222219
}
223220

224221
val variantName = name
225-
val capitalizedVariantName =
226-
variantName.toString().capitalized()
222+
val capitalizedVariantName = variantName.toString().capitalized()
227223
val artifactName = "MullvadVPN-${versionName}${artifactSuffix}"
228224

229225
tasks.register<Copy>("create${capitalizedVariantName}DistApk") {
@@ -316,7 +312,8 @@ tasks.create("printVersion") {
316312

317313
play {
318314
serviceAccountCredentials.set(file("$credentialsPath/play-api-key.json"))
319-
// Disable for all flavors by default. Only specific flavors should be enabled using PlayConfigs.
315+
// Disable for all flavors by default. Only specific flavors should be enabled using
316+
// PlayConfigs.
320317
enabled = false
321318
// This property refers to the Publishing API (not git).
322319
commit = true
@@ -326,6 +323,19 @@ play {
326323
userFraction = 1.0
327324
}
328325

326+
protobuf {
327+
protoc { artifact = libs.plugins.protobuf.protoc.get().toString() }
328+
plugins {
329+
create("java") { artifact = libs.plugins.grpc.protoc.gen.grpc.java.get().toString() }
330+
}
331+
generateProtoTasks {
332+
all().forEach {
333+
it.plugins { create("java") { option("lite") } }
334+
it.builtins { create("kotlin") { option("lite") } }
335+
}
336+
}
337+
}
338+
329339
dependencies {
330340
implementation(projects.lib.common)
331341
implementation(projects.lib.daemonGrpc)
@@ -345,6 +355,7 @@ dependencies {
345355

346356
implementation(libs.commons.validator)
347357
implementation(libs.androidx.activity.compose)
358+
implementation(libs.androidx.datastore)
348359
implementation(libs.androidx.ktx)
349360
implementation(libs.androidx.coresplashscreen)
350361
implementation(libs.androidx.lifecycle.runtime)
@@ -370,6 +381,7 @@ dependencies {
370381
implementation(libs.kotlin.reflect)
371382
implementation(libs.kotlin.stdlib)
372383
implementation(libs.kotlinx.coroutines.android)
384+
implementation(libs.protobuf.kotlin.lite)
373385

374386
// UI tooling
375387
implementation(libs.compose.ui.tooling.preview)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
syntax = "proto3";
2+
3+
option java_package = "net.mullvad.mullvadvpn.repository";
4+
option java_multiple_files = true;
5+
6+
message UserPreferences { bool is_privacy_disclosure_accepted = 1; }

android/gradle/libs.versions.toml

+9-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ androidx-activitycompose = "1.9.3"
1313
androidx-appcompat = "1.7.0"
1414
androidx-ktx = "1.15.0"
1515
androidx-coresplashscreen = "1.1.0-rc01"
16+
androidx-datastore = "1.1.1"
1617
androidx-espresso = "3.6.1"
1718
androidx-lifecycle = "2.8.7"
1819
androidx-test = "1.6.1"
@@ -33,7 +34,6 @@ compose-material3 = "1.3.1"
3334
grpc = "1.69.0"
3435
grpc-kotlin = "1.4.1"
3536
grpc-kotlin-jar = "1.4.1:jdk8@jar"
36-
grpc-protobuf = "4.29.1"
3737

3838
# Koin
3939
koin = "4.0.0"
@@ -51,7 +51,8 @@ kotlinx = "1.9.0"
5151
kotlinx-serialization = "2.1.0"
5252

5353
# Protobuf
54-
protobuf = "0.9.4"
54+
protobuf-gradle-plugin = "0.9.4"
55+
protobuf = "4.29.1"
5556

5657
# Misc
5758
commonsvalidator = "1.9.0"
@@ -81,6 +82,7 @@ android-volley = { module = "com.android.volley:volley", version.ref = "android-
8182
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activitycompose" }
8283
androidx-appcompat = { module = "androidx.appcompat:appcompat", version.ref = "androidx-appcompat" }
8384
androidx-coresplashscreen = { module = "androidx.core:core-splashscreen", version.ref = "androidx-coresplashscreen" }
85+
androidx-datastore = { module = "androidx.datastore:datastore", version.ref = "androidx-datastore" }
8486
androidx-espresso = { module = "androidx.test.espresso:espresso-core", version.ref = "androidx-espresso" }
8587
androidx-ktx = { module = "androidx.core:core-ktx", version.ref = "androidx-ktx" }
8688
androidx-lifecycle-runtime = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "androidx-lifecycle" }
@@ -119,7 +121,9 @@ grpc-okhttp = { module = "io.grpc:grpc-okhttp", version.ref = "grpc" }
119121
grpc-android = { module = "io.grpc:grpc-android", version.ref = "grpc" }
120122
grpc-kotlin-stub = { module = "io.grpc:grpc-kotlin-stub", version.ref = "grpc-kotlin" }
121123
grpc-protobuf-lite = { module = "io.grpc:grpc-protobuf-lite", version.ref = "grpc" }
122-
grpc-protobuf-kotlin-lite = { module = "com.google.protobuf:protobuf-kotlin-lite", version.ref = "grpc-protobuf" }
124+
125+
# Protobuf
126+
protobuf-kotlin-lite = { module = "com.google.protobuf:protobuf-kotlin-lite", version.ref = "protobuf" }
123127

124128
# Koin
125129
koin = { module = "io.insert-koin:koin-core", version.ref = "koin" }
@@ -177,8 +181,8 @@ kotlin-ksp = { id = "com.google.devtools.ksp", version.ref = "kotlin-ksp" }
177181
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlinx-serialization" }
178182

179183
# Protobuf
180-
protobuf-core = { id = "com.google.protobuf", version.ref = "protobuf" }
181-
protobuf-protoc = { id = "com.google.protobuf:protoc", version.ref = "grpc-protobuf" }
184+
protobuf-core = { id = "com.google.protobuf", version.ref = "protobuf-gradle-plugin" }
185+
protobuf-protoc = { id = "com.google.protobuf:protoc", version.ref = "protobuf" }
182186

183187
# gRPC
184188
grpc-protoc-gen-grpc-java = { id = "io.grpc:protoc-gen-grpc-java", version.ref = "grpc" }

android/lib/daemon-grpc/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ dependencies {
7373
implementation(libs.grpc.android)
7474
implementation(libs.grpc.kotlin.stub)
7575
implementation(libs.grpc.protobuf.lite)
76-
implementation(libs.grpc.protobuf.kotlin.lite)
76+
implementation(libs.protobuf.kotlin.lite)
7777

7878
implementation(libs.arrow)
7979
implementation(libs.arrow.optics)

0 commit comments

Comments
 (0)