Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions play-services-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ dependencies {
implementation project(':play-services-vision-core')
implementation project(':play-services-wearable-core')

implementation project(':play-services-wallet')

implementation project(':play-services-core-proto')

implementation project(':play-services-core:microg-ui-tools') // deprecated
Expand Down
42 changes: 42 additions & 0 deletions play-services-wallet/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* SPDX-FileCopyrightText: 2026 microG Project Team
* SPDX-License-Identifier: Apache-2.0
*/

apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply plugin: 'signing'

android {
namespace "com.google.android.gms.wallet"

compileSdkVersion androidCompileSdk
buildToolsVersion "$androidBuildVersionTools"

buildFeatures {
aidl = true
}

defaultConfig {
versionName version
minSdkVersion androidMinSdk
targetSdkVersion androidTargetSdk
}

compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}

apply from: '../gradle/publish-android.gradle'

description = 'microG implementation of play-services-wallet'

dependencies {
api project(':play-services-base')
api project(':play-services-basement')
api project(':play-services-tasks')

annotationProcessor project(':safe-parcel-processor')
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ include ':play-services-tasks'
include ':play-services-vision'
include ':play-services-vision-common'
include ':play-services-wearable'
include ':play-services-wallet'
include ':play-services-fitness'

include ':play-services-api'
Expand Down
1 change: 1 addition & 0 deletions vending-app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ dependencies {
implementation project(':fake-signature')
implementation project(':play-services-auth')
implementation project(':play-services-base-core')
implementation project(':play-services-wallet')
implementation project(':play-services-core-proto')

implementation "com.squareup.wire:wire-runtime:$wireVersion"
Expand Down