android/*: add Tamil translation (#8337)

This commit is contained in:
K.B.Dharun Krishna
2022-08-11 17:04:12 +05:30
committed by GitHub
parent 5937ca00e8
commit 80f0129c7b
13 changed files with 257 additions and 0 deletions

20
pages.ta/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}}`
- ஒரு செயல்பாட்டைத் தொடங்கி, அதற்குத் தரவை அனுப்பவும்:
`am start -a {{android.intent.action.VIEW}} -d {{tel:123}}`
- குறிப்பிட்ட செயலுக்கும் வகைக்கும் பொருந்தும் செயல்பாட்டைத் தொடங்கவும்:
`am start -a {{android.intent.action.MAIN}} -c {{android.intent.category.HOME}}`
- ஒரு நோக்கத்தை URI ஆக மாற்றவும்:
`am to-uri -a {{android.intent.action.VIEW}} -d {{tel:123}}`