App Store vs Google Play 对比

阶梯式 30%/15% 佣金,覆盖 175 个地区,欧盟自 2026 年 10 月 1 日起启用新商业条款

VS
Google Play

自 2026 年 6 月 30 日起,在 EEA/英国/美国按收入区间与安装归属收取 10%-25% + 5%

13 分钟阅读iOS

快速结论

没有绝对赢家,结果取决于收入分布。在 EEA/英国/美国,Google 对订阅收取 10% + 5%,不区分安装归属;未加入 SBP 的 Apple 开发者第一年要支付 30%。年收入前 100 万美元区间,两大商店都落在 15% 的区间上打平。若在欧盟销售,还需单独核算 Apple 2026 年 10 月 1 日生效的新费率表。

App StoreGoogle Play
阅读完整结论

评分对比

图表加载中…

详细评分

详细评分: App Store Google Play ——按类别打分,满分 10 分
分类App StoreGoogle Play
性能
7/10
7/10
学习难易度
6/10
7/10
生态系统
9/10
8/10
社区
8/10
8/10
就业市场
8/10
7/10
面向未来
8/10
8/10

优缺点

App Store

优点

  • 加入 Small Business Program(上一年度净收益低于 100 万美元)佣金为 15%
  • 订阅满一年后费率自动降至 15%,无需额外申请
  • 覆盖 175 个地区,一次申请即可全球分发
  • 配备人工编辑审核加恶意软件扫描
  • 欧盟自 2026 年 10 月 1 日起取消 Core Technology Fee 与 Store Services Fee

缺点

  • 标准佣金 30%,高于 Google 大多数档位
  • 开发者账号会员费每年 99 美元;Google 为一次性 25 美元
  • 企业账号需要法人实体和 D-U-N-S Number
  • 一旦超过 SBP 门槛,当年剩余时间将转为标准费率

最适合

上一年度净收入低于 100 万美元的小团队长期运营的订阅类产品(满一年后为 15%)希望在欧盟尝试 App Store 之外分发渠道的团队偏好人工审核商店机制的品牌

Google Play

优点

  • EEA/英国/美国的订阅不区分安装归属:统一为 10% + 5% billing fee
  • EEA/英国/美国年收入前 100 万美元区间,所有交易类型均为 10% + 5%
  • 账号一次性收取 25 美元,没有年费
  • 韩国与印度使用替代计费方式可再减 4 个百分点
  • Play Games Level Up / Apps Experience 项目下,存量安装为 20%、外部网页链接为 15%

缺点

  • 年收入超过 100 万美元后的非订阅交易:新安装 20% + 5%,存量安装 25% + 5%
  • 首档费率并非自动生效:需要注册 15% service fee tier
  • billing fee 单独列项,总成本不会显示在同一行
  • 数字内容销售必须使用 Play Billing(实体商品除外)

最适合

EEA/英国/美国以订阅为主的产品(实际费率 15%)从土耳其及其他 remaining markets 地区发布的团队追求低准入门槛的独立开发者打算使用韩国/印度替代计费折扣的团队

代码对比

App Store
// StoreKit 2 — 加载订阅商品并估算扣除佣金后的净收入
import StoreKit

func loadSubscriptionAndEstimateNet(productID: String, isSmallBusinessProgram: Bool, firstYear: Bool) async throws {
    let products = try await Product.products(for: [productID])
    guard let product = products.first else { return }

    // Apple 官方费率:SBP 固定 15%,标准档第一年 30%、满一年后 15%
    let commissionRate: Decimal
    if isSmallBusinessProgram {
        commissionRate = 0.15
    } else {
        commissionRate = firstYear ? 0.30 : 0.15
    }

    let price = product.price
    let netToDeveloper = price * (1 - commissionRate)

    print("商品: \(product.displayName)")
    print("标价: \(product.displayPrice)")
    print("开发者净得(估算): \(netToDeveloper)")

    // 购买流程
    let result = try await product.purchase()
    switch result {
    case .success(let verification):
        if case .verified(let transaction) = verification {
            await transaction.finish()
        }
    case .userCancelled, .pending:
        break
    @unknown default:
        break
    }
}
Google Play
// Play Billing Library 9.1.0 - 查询订阅并估算净收入 (Kotlin)
import com.android.billingclient.api.BillingClient
import com.android.billingclient.api.BillingClient.ProductType
import com.android.billingclient.api.BillingClient.BillingResponseCode
import com.android.billingclient.api.QueryProductDetailsParams

fun queryAndEstimateNet(client: BillingClient, productId: String, region: String) {
    val product = QueryProductDetailsParams.Product.newBuilder()
        .setProductId(productId)
        .setProductType(ProductType.SUBS)
        .build()
    val params = QueryProductDetailsParams.newBuilder()
        .setProductList(listOf(product))
        .build()
    // PBL 8.0.0+: 监听器接收 QueryProductDetailsResult
    client.queryProductDetailsAsync(params) { billingResult, result ->
        if (billingResult.responseCode != BillingResponseCode.OK) return@queryProductDetailsAsync
        for (details in result.productDetailsList) {
            val offer = details.subscriptionOfferDetails?.firstOrNull() ?: continue
            val micros = offer.pricingPhases.pricingPhaseList.first().priceAmountMicros
            // EEA/UK/US 订阅: 新安装与存量安装相同, 10% + 5% billing fee
            // Remaining markets (含土耳其): 固定 15%
            val fee = if (region == "EEA_UK_US") 0.10 + 0.05 else 0.15
            println("${details.title}: ${micros / 1_000_000.0 * (1 - fee)}")
        }
        // result.unfetchedProductList: 未能查询到的商品
    }
}

结论

没有绝对赢家,结果取决于收入分布。在 EEA/英国/美国,Google 对订阅收取 10% + 5%,不区分安装归属;未加入 SBP 的 Apple 开发者第一年要支付 30%。年收入前 100 万美元区间,两大商店都落在 15% 的区间上打平。若在欧盟销售,还需单独核算 Apple 2026 年 10 月 1 日生效的新费率表。

获取免费咨询
常见问题

常见问题

Apple:标准 30%,加入 Small Business Program 为 15%,订阅第一年 30%、之后降至 15%。Google Play:在 remaining markets 地区,年收入前 100 万美元为 15%,超出部分 30%,订阅固定 15%。在 EEA/英国/美国,年收入前 100 万美元区间所有交易类型均为 10% + 5%;超出后订阅仍为 10% + 5%,非订阅交易新安装为 20% + 5%,存量安装为 25% + 5%。

相关博客文章

查看全部文章

相关项目

查看全部项目
全部对比