به نام خداوند مهربان

۶ مطلب با کلمه‌ی کلیدی «android» ثبت شده است

Connect your phone to PC via USB and then open a CMD (asume adb is installed):

List devices:

adb devices

 

To list all packages:
adb shell  pm list packages

 

For remove a package:

adb shell pm uninstall -k --user 0 com.android.chrome

or

adb uninstall --user 0 com.android.chrome
 

To open an ADB shell:

adb shell 

 

List all of the currently installed packages:

pm list packages

 

Uninstall the app(s):

pm uninstall -k --user 0 package name

ex:

pm uninstall -k --user 0 com.google.android.youtube

 

Change directory:

cd /storage/self/primary/Download

 

Install an apk:
pm install -r --user 0 com.android.chrome.apk

 

  • حسن دلدار

واسط ارتباطی بین برنامه ها و سیستم عامل در Android  را ABI گویند که دو مورد از مهمترین ABI ها : arm64-v8a و armeabi-v7a می باشد.

گوشی Xiaomi Redmi 4 (4X)  از نوع arm64-v8a می باشد. 
Supported ABIs table 1 from https://developer.android.com/ndk/guides/abis

  • حسن دلدار

Connect to adb by wifi steps:

1 - stay connect via USB

2 - connect to your WIFI network (computer and mobile device both)

3 - ping DeviceIP (must be have ping to your device)

4 - adb kill-server

5 - adb usb

6 - adb tcpip 5555

7 - adb connect yourDeviceIP

8 - adb devices (must be see two device names , one of them is by deviceIP)

9 - unplug USB cable 

  • حسن دلدار

In this approach, we will use the ADB (Android Debug Bridge)tool available in Platform-Tools inside the Android SDK.

If you’re working on Windows, check that the environment variables path is set to the Platform-Tools (xxx/Users/Library/Android/sdk/platform-tools/)As you’ve configured the paths, just execute your commands type adb in the terminal or at the command prompt, which gives you the list of options.

Remember, we need to be connected over the same Wi-Fi network in the system and mobile. Let’s get started.

 

Step 1. Connect the device to the system via USB for initial setup

To check whether it’s properly connected, open the built-in terminal and run the command adb devices. This gives you the list of devices currently connected.

 

step1

Step 2. Set the target device to listen for a TCP/IP connection on port 5555

adb tcpip 5555

 

step2

Step 3. Find the IP address of the Android device

For example, on a Nexus device, you can find the IP address at Settings > About the tablet (or About phone) > Status > IP address.

Step 4. Connect to the device by its IP address

adb connect IP_Address

Step 5. Remove the USB cable and test your connection by typing the initial command

adb devices
 

 

That’s it, we’re done. We can run and debug wirelessly now.

If the adb connection is ever lost:

  1. Make sure that your host is still connected to the same Wi-Fi network your Android device is.

  2. Reconnect by executing the adb connect step again.

  3. If that doesn’t work, reset your adb host:

adb kill-server

 

 

 

 

 

 

  • حسن دلدار

to use remote debug first active developer mode in android

1-in android>setting>search bulid number-->then click on it several times to activate developer mode

2- android>setting>developer options>enable usb debugging

3- connect to computer with usb cable

4-in chrome pc type chrome://inspect > enter

5- in mobile open url then monitor in pc chrome://inspect/#devices

  • حسن دلدار

به نام خدا

با سلام خدمت همه دوستانی اکه وارد این تارنما میشوند.

بازی رزمنده کوچک بعد از تلاش چند ماه بالاخره تمام شد و در بازار قرار گرفت. این بازی مخصوص گوشی های با آندروید 2.3.3 به بالا می باشد.

بازی رزمنده کوچک یادآور صحنه های از رشادت های رزمندگان اسلام در جنگ هشت ساله تحمیلی علیه ایران میباشد. این بازی داستان رزمنده ای است که در راه رسیدن به پیروزی درمقابل خود سختی ها و دشواریهای زیادی رامتحمل میشود و سرشار از هیجان است. داستان بازی در سه مرحله طراحی شده که هر مرحله به مراتب سختترازمرحله قبل است ونیازبه دقت و مهارت بیشتری میباشد. این بازی درحال توسعه می باشد و بزودی مراحل بعدی ان منتشر خواهد شد. این نسخه از بازی اولین نسخه می باشد .

آدرس نسخه اصلی

آدرس نسخه آزمایشی و رایگان

 در صورت نصب و استفاده از این بازی حتما نظرات و پیشنهادات خود را به من ارسال کنید.
  • حسن دلدار