我必须拥有一个域名才能在Google Play上发布Android应用吗?

huangapple go评论71阅读模式
英文:

Do I must own a domain when I publish an android app to Google Play?

问题

当我使用Android Studio创建一个Android应用程序时,系统会创建一个build.gradle文件,我应该设置一个命名空间,例如com.mydata.soundmeter,用于我的项目。

我知道命名空间com.mydata.soundmeter基于域名mydata.com,以确保在将应用程序发布到Google Play时保持其唯一性。

当我发布应用程序到Google Play时,我必须拥有域名mydata.com吗?

build.gradle

android {
    compileSdk 32
    flavorDimensions "default"
    namespace 'com.mydata.soundmeter'

    defaultConfig {
        applicationId "com.mydata.soundmeter"
        minSdk 23
        targetSdk 32
        versionCode 5
        versionName "1.05"     
    }

    productFlavors {
        free {
            applicationId "com.mydata.soundmeter"
        }
    
        ...
    }
}
英文:

When I create an android app with Android Studio, the system will create a build.gradle file, and I should to set a namespace such as com.mydata.soundmeter for my project.

I know the namespace com.mydata.soundmeter is based domain mydata.com in order to keep the app uniqueness when I publish the app to Google Play.

Do I must own the domain mydata.com when I publish the app to Google Play?

build.gradle

android {
    compileSdk 32
    flavorDimensions "default"
    namespace 'com.mydata.soundmeter'

    defaultConfig {
        applicationId "com.mydata.soundmeter"
        minSdk 23
        targetSdk 32
        versionCode 5
        versionName "1.05"     
    }

    productFlavors {
        free {
            applicationId "com.mydata.soundmeter"
        }

    ...
}

答案1

得分: 1

这不是必须的,因为它有助于唯一标识您的应用,如此处所描述:https://support.google.com/admob/answer/9972781?hl=en#:~:text=You%20can%20find%20an%20app's,example。

然而,该名称将帮助用户识别您的应用。

英文:

Its not a must as it helps uniquely identify your app. as described here https://support.google.com/admob/answer/9972781?hl=en#:~:text=You%20can%20find%20an%20app's,example.

However, the name will help users identify your app.

答案2

得分: 0

从法律的角度来看?不需要,除非您所在的司法管辖区存在某些覆盖此情况的法律。

从技术的角度来看,某些事情(例如深度链接)需要您拥有该域名并在该域名上运营一个网站,以便您可以控制该网站提供什么内容。

从实际的角度来看,可以想象您的营销、文档和支持都将以您的网站为中心。

英文:

> Do I must own the domain mydata.com when I publish the app to Google Play?

From a legal standpoint? No, unless there are laws in your jurisdiction which somehow cover this case.

From a technical standpoint, certain things (e.g., deeplinks) require you to own the domain and operate a Web site at that domain where you can control what that Web site serves.

From a practical standpoint, one imagines that your marketing, documentation, and support will be centered around your Web site.

答案3

得分: 0

如果我记得正确,列表标准的一部分是应用隐私协议的网址,所以你需要一个网站,尽管我认为如果你在制作一个公开的应用的话。

而且你可能想要为你的应用命名com后面的部分,确保它与你的应用相关。例如,Com.magicapp.app,否则你的应用可能看起来像是骗人的。

希望这有所帮助!

英文:

If i recall correctly Part of the listing criteria is a url to your privacy agreement for the app so you will need a website of some kind though i think, if you're making a public app

And you probably want to name your com stuff something specific to your app. Com.magicapp.app otherwise your app may look scammy.

Hope this helps!

huangapple
  • 本文由 发表于 2023年3月8日 15:26:26
  • 转载请务必保留本文链接:https://go.coder-hub.com/75670301.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定