am: add Hindi translation (#11251)

Create am.md
pull/23/head
Vedant Yadav 2023-10-25 21:40:09 +05:30 committed by GitHub
parent 473ff60204
commit f5d2a59d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages.hi/android/am.md Normal file
View File

@ -0,0 +1,20 @@
# am
> एंड्रॉइड गतिविधि प्रबंधक।
> अधिक जानकारी: <https://developer.android.com/studio/command-line/adb#am>.
- एक विशिष्ट गतिविधि प्रारंभ करें:
`am start -n {{com.android.settings/.Settings}}`
- एक गतिविधि शुरू करें और उसमें डेटा[d] पास करें:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- किसी विशिष्ट क्रिया और श्रेणी[c] से मेल खाती गतिविधि प्रारंभ करें:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- एक उद्देश्य को यूआरआई में बदलें:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`