Targeting
रिकवरी ऐक्शन के लिए टारगेटिंग की जानकारी, जैसे कि क्षेत्र, Android SDK लेवल, ऐप्लिकेशन के वर्शन वगैरह.
JSON के काेड में दिखाना |
{
// Union field criteria can be only one of the following:
"regions": {
object (Regions )
},
"androidSdks": {
object (AndroidSdks )
},
"allUsers": {
object (AllUsers )
}
// End of list of possible types for union field criteria .
// Union field target_versions can be only one of the following:
"versionList": {
object (AppVersionList )
},
"versionRange": {
object (AppVersionRange )
}
// End of list of possible types for union field target_versions .
} |
फ़ील्ड |
यूनियन फ़ील्ड criteria . रिकवरी ऐक्शन को टारगेट करने की शर्तें. criteria इनमें से कोई एक हो सकता है: |
regions |
object (Regions )
टारगेटिंग, उपयोगकर्ता के खाते के इलाके के हिसाब से तय की जाती है.
|
androidSdks |
object (AndroidSdks )
टारगेटिंग, डिवाइसों के Android API लेवल पर आधारित होती है.
|
allUsers |
object (AllUsers )
सभी उपयोगकर्ताओं को टारगेट किया जाता है.
|
यूनियन फ़ील्ड target_versions . रिकवरी ऐक्शन से टारगेट किए गए ऐप्लिकेशन वर्शन. ज़रूरी है. target_versions इनमें से कोई एक हो सकता है: |
versionList |
object (AppVersionList )
सूची के तौर पर टारगेट किए गए वर्शन कोड.
|
versionRange |
object (AppVersionRange )
वर्शन कोड को रेंज के तौर पर टारगेट करें.
|
AppVersionList
ऐप्लिकेशन के वर्शन की सूची के लिए डेटा फ़ॉर्मैट.
JSON के काेड में दिखाना |
{
"versionCodes": [
string
]
} |
फ़ील्ड |
versionCodes[] |
string (int64 format)
ऐप्लिकेशन वर्शन के कोड की सूची.
|
AppVersionRange
ऐप्लिकेशन के वर्शन की लगातार रेंज के लिए डेटा फ़ॉर्मैट.
JSON के काेड में दिखाना |
{
"versionCodeStart": string,
"versionCodeEnd": string
} |
फ़ील्ड |
versionCodeStart |
string (int64 format)
ऐप्लिकेशन का सबसे पुराना वर्शन.
|
versionCodeEnd |
string (int64 format)
चुनी गई सीमा में ऐप्लिकेशन का सबसे नया वर्शन.
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2024-12-18 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2024-12-18 (UTC) को अपडेट किया गया."],[[["Targeting details for a recovery action include regions, Android SDK levels, and app versions."],["Recovery actions can target specific app versions using either a list of version codes or a range of version codes."],["You can target all users or filter by region or Android SDK level for recovery actions."],["`AppVersionList` defines target app versions using a list of version codes, while `AppVersionRange` uses a start and end version code for a continuous range."]]],["This describes targeting options for recovery actions, utilizing JSON structures. Actions can target users based on `regions`, `androidSdks`, or `allUsers`. App versions can be targeted either as a `versionList` with specific `versionCodes` or as a `versionRange` defined by `versionCodeStart` and `versionCodeEnd`. `AppVersionList` and `AppVersionRange` provide formats to define version-specific targeting. A recovery action needs to target app versions, using one of the formats.\n"]]