What is a C programming

What is a C Program? | Detailed Explanation of C Tokens and Identifier Rules 💻 What is a C Program? A C program is a computer program written in the C programming language , which is a general-purpose, powerful, and fast low-level language. It was developed by Dennis Ritchie in 1972 at Bell Labs to create the Unix Operating System . C is the foundation of many modern programming languages such as C++ , Java , and Python . C is a powerful and efficient language — it allows direct control of memory and is ideal for creating high-performance software. ✨ Key Features of the C Language: Fast execution Efficient memory management Modular programming support Portable across platforms 🧠 Example of a Simple C Program: #include <stdio.h> int main() { printf("Hello, World!\\n"); return 0; } This program simply prints “Hello, World!” on the screen. 🔹 What are C Tokens? When writing a C program, each statement is made up o...

Android app publishing & Deployment

Android App Publishing மற்றும் Deployment

Android App Publishing மற்றும் Deployment

அறிமுகம்

Android App-ஐ உருவாக்கிய பிறகு, அதை Publish செய்து உலகம் முழுவதும் உள்ள பயனர்களிடம் கொண்டு சேர்க்க வேண்டும். இதற்கான அதிகாரப்பூர்வ தளம் Google Play Store.

Step 1: APK / AAB உருவாக்கம்

  • APK (Android Package): பழைய build format.
  • AAB (Android App Bundle): Google Play-க்கு பரிந்துரைக்கப்படும் format.

Android Studio → Build → Generate Signed Bundle/APK

Step 2: Keystore உருவாக்கம்

உங்கள் app-ஐ பாதுகாப்பாக sign செய்ய, ஒரு keystore file தேவை.

// Example command
keytool -genkey -v -keystore mykey.jks -keyalg RSA -keysize 2048 -validity 10000 -alias myalias

Step 3: App Signing

Signed APK/AAB build செய்து, அதை Play Store-ல் upload செய்ய வேண்டும்.

Step 4: Google Play Console

  1. Play Console login செய்யுங்கள்.
  2. New Application உருவாக்குங்கள்.
  3. App details (பெயர், விளக்கம், screenshots, icons) upload செய்யுங்கள்.
  4. Pricing & Distribution தேர்வு செய்யுங்கள்.
  5. Signed AAB file upload செய்யுங்கள்.

Step 5: Review & Release

App-ஐ Google Play review செய்யும். சாதாரணமாக 24–48 மணிநேரத்தில் approval கிடைக்கும். Approval கிடைத்தவுடன் உங்கள் app live ஆகும்.

Publishing Tips

  • App-க்கு unique package name வேண்டும்.
  • High-quality screenshots & app icon upload செய்யுங்கள்.
  • Privacy Policy URL சேர்க்க வேண்டும்.
  • App updates release செய்யும்போது versionCode, versionName மாற்ற வேண்டும்.

இந்த பதிவு Android App-ஐ Publish & Deploy செய்ய ஒரு அடிப்படை வழிகாட்டி.

Comments

Popular posts from this blog

Offline ai

Termux comment

Chat GPT prompt style