Showing posts with label in. Show all posts
Showing posts with label in. Show all posts

Thursday, November 10, 2016

New Seller Countries in Google Play

New Seller Countries in Google Play


Over the past year we’ve been working to expand the list of countries and currencies from which Android developers can sell their products. Starting today, developers in Czech Republic, Israel, Poland, and Mexico can sell priced applications and in-app products on Google Play, using their local bank accounts for payments. Welcome developers!



If you develop Android apps in one of the new countries and want to get started selling them, visit play.google.com/apps/publish and set up a new Google Play developer account. Once you’ve uploaded your apps, you can price them in any available buyer currencies, publish, and then receive payouts and financial data in your local currency.



If you are based in Israel or Mexico and are currently selling apps through an AdSense merchant account, you will need to migrate your apps to a new Google Play developer account in your local currency. Watch for an email that provides complete information on the migration process and timeline.



Additionally, we encourage developers everywhere to visit the Developer Console as soon as possible to set prices for their products in the currencies of these new countries. Stay tuned for more announcements soon as we continue to roll out our new billing infrastructure to buyers and sellers throughout the world.



Join the discussion on

+Android Developers




Available link for download

Read more »

Sunday, November 6, 2016

Open YouTube In Pakistan With Out any Proxy in Pakistan

Open YouTube In Pakistan With Out any Proxy in Pakistan


How to Open YouTube In Pakistan With Out any Proxy or Software:


  1. click on start menu >>open control penal>>click on Network and Internet connection.
                                                                                                                                                                                                                               
  2. Click on Network Connection>>>>
                                                   

  3. Right Click on Local Area Connection>>>>>than click on Properties 


                                                           
  4. click on internet protocol >>>>>>>than click on properties
                                                                              
  5. click on (use the following DNS server address)
    type 8.8.8.8 in the 1st box
    and type 8.8.4.4 in the 2nd box and SAVE.
                                                                         
  6. Enjoy You Tube in Pakistan.               

0 Response to "Open YouTube In Pakistan With Out any Proxy in Pakistan"


Available link for download

Read more »

Wednesday, October 19, 2016

Unifying Key Store Access in ICS

Unifying Key Store Access in ICS


[This post is a group effort by Tony Chan, Fred Chung, Brian Carlstrom, and Kenny Root. — Tim Bray]



Android 4.0 (ICS) comes with a number of enhancements that make it easier for people to bring their personal Android devices to work. In this post, we’re going to have a look at the key store functionality.

Back in Android 1.6 (Donut), a system key store was added for use by VPN. Although this was later expanded to support WiFi authentication, applications weren’t able to access it.

In the past, it was common practice for apps to maintain their own key store if they needed to authenticate a secure SSL web server, or authenticate the user to a server via a client certificate. While this works, it can present manageability issues in an enterprise environment where multiple certificates may be shared across a number of apps such as Email and Browser.

New in ICS: KeyChain

To bridge the gap in ICS, there’s a new API named KeyChain that regulates application access to the system key store and allows users to grant application access to the credentials stored there. Additionally, this API enables applications to initiate installation of credentials from X.509 certificates and PKCS#12 key stores.

The KeyChain API is rather simple. To install a key store or a certificate, you retrieve an install intent, supply the raw bytes of the credentials, and use the intent to launch a system installation dialog. If it’s a keystore, as in the example below, you’ll need provide the data in PKCS#12 format, and the user will have to know the PKCS#12 password.

 byte[] keystore = . . (read from a PKCS#12 keystore)

Intent installIntent = KeyChain.createInstallIntent();
installIntent.putExtra(KeyChain.EXTRA_PKCS12, keystore);
startActivityForResult(installIntent, INSTALL_KEYSTORE_CODE);

The install intent launches a system dialog that prompts the user to enter the password for the keystore.

This can also be used for installing organizational CA certificates which will then be trusted by all applications to authenticate to non-public servers with certificates issued by the same CA.

In ICS, Android no longer requires a separate password to protect the system credential storage. Rather, it uses the screen lock password for this purpose, and the Android Device Administration API can be used for central policy enforcement. This means, for example, that the screen lock password can’t be removed as long as the secured credentials remain on the device.

Accessing System Key Store Credentials

Once the system key store is configured, the KeyChain API offers functions such as requesting a client certificate for authenticating with an SSL server. The first time an application requests access, the user is prompted with a list of available certificates and can select one to grant access to that certificate to the application. If the user chooses to allow access to a certificate, a string alias name for the certificate is returned to the application. The application can then use the alias to access the certificate in the future without further user involvement.

The code below illustrates how an application can prompt the user to select a credential alias and grant access to the application. KeyChain will remember this selection such that the same application can save the credential alias selection and have access to the same certificate in future. For example, the Email application for ICS has implemented this feature in its Server Settings screen.

 KeyChain.choosePrivateKeyAlias(this,
new KeyChainAliasCallback() {

public void alias(String alias) {
// Credential alias selected. Remember the alias selection for future use.
if (alias != null) saveAlias(alias);
}
},
new String[] {"RSA", "DSA"}, // List of acceptable key types. null for any
null, // issuer, null for any
"internal.example.com", // host name of server requesting the cert, null if unavailable
443, // port of server requesting the cert, -1 if unavailable
null); // alias to preselect, null if unavailable

Once an application has been granted access to the certificate, it can access the private key through the getPrivateKey() method. It is worth noting that as with any PrivateKey objects, the application should not make assumptions about the encoding. For example, on some implementations the PrivateKey object may just be an opaque representation of a key stored in a hardware key store.

Here’s a sample code snippet that demonstrates the use of private key retrieved from the key store for signing:

 PrivateKey privateKey = KeyChain.getPrivateKey(context, savedAlias);
if (privateKey != null) {
...
Signature signature = Signature.getInstance("SHA1withRSA");
signature.initSign(privateKey);
...
}

A common use of the private key is for SSL client authentication. This can be implemented by using an HttpsURLConnection with a custom X509KeyManager that returns the PrivateKey retrieved from the KeyChain API. The open source Email application for ICS uses KeyChain with an X509ExtendedKeyManager. To learn more, have a look at the source code (in SSLUtils.java).

This API provides a unified way to access the system key store credentials. If your application uses client certificates (take note: enterprise email client or web browser developers) you should definitely look into the KeyChain API for your next update!


Available link for download

Read more »

Thursday, October 13, 2016

MOST ADVANCE ACTIVE SUSPENSION SYSTEM IN VEHICLES

MOST ADVANCE ACTIVE SUSPENSION SYSTEM IN VEHICLES


INTRODUCTION

Traditionally automotive suspension designs have been compromise between the three conflicting criteria’s namely road handling, load carrying, and passenger comfort. The suspension system must support the vehicle, provide directional control using handling maneuvers and provide effective isolation of passengers and load disturbance. Good ride comfort requires a soft suspension, where as insensitivity to apply loads require stiff suspension. Good handling requires a suspension setting somewhere between it. Due to these conflicting demands, suspension design has to be something that can compromise of these two problems.

Active suspension system has the ability to response to the vertical changes in the road input. The damper or spring is interceding by the force actuator. This force actuator has it own task which is to add or dissipate energy from the system. The force actuator is control by various types of controller determine by the designer. The correct control strategy will give better compromise between comfort and vehicle stability. Therefore active suspension system offer better riding comfort and vehicle handling to the passengers. Figure 1.3 shows simple block diagram to explain how the active suspension can achieve better performance. Figure


describe basic component of active suspension. In this type of suspension the controller can modify the system dynamics by activating the actuators. 






All these three types of suspension systems have it own advantages and disadvantages. However researchers are focus on the active car suspension and it is because the performance obtained is better than the other two types of suspension systems as mentioned before. For example the passive suspension system the design is fix depend on the goal of the suspension. The passive suspension is an open loop control system. It doesn’t have any feedback signal to correct the error. It means that the suspension system will not give optimal ride comfort. In other side which is active suspension, it has that ability to give ride comfort. This is happen by having force actuator control by the controller. The active suspension system is a close loop control system. It will correct the error and gave the output to the desired level. In this project observation will be made at the vertical acceleration of the vehicle body called sprung mass and tire deflection. By using the right control strategy the ride quality and handling performance can be optimize. Therefore, in this project there

will be modeling for active and passive suspension only.




·      Active Suspension


ØCOMPONENTS



1.    A Computer or an electronic control unit (ECU)


Short for Electronic Control Unit, the ECU is a name given to a device that controls one or more electrical systems in a vehicle. It operates much like the BIOS does in a computer. The ECU provides instructions for various electrical systems, instructing them on what to do and how to operate. Below are two pictures of what an ECU might look like, depending on the vehicle. 
There are a number of different types of ECUs, including an Engine Control Module (ECM), Powertrain Control Module (PCM), Brake Control Module (BCM), General Electric Module (GEM) and others. Newer vehicles can have as many as 80 ECUs and due to their increasing complexity, the programming involved in developing the ECUs is becoming more challenging to maintain.


  


2.    SENSORS


Linear acceleration sensors, also called G-force sensors, are devices that measure Acceleration caused by movement, vibration, collision, etc. All acceleration sensors operate based on a simple principle in which Newtons second law of motion is applied to a spring-mass system. A mass is connected to the base of the acceleration sensor through an equivalent spring. Since the force between the mass and base is proportional to the acceleration of the mass and the relative distance between them has a linear relationship with the force due to the spring, the acceleration can be calculated from a measurement of the relative position of the mass or force on the spring as it varies with time. Generally, the most common types of acceleration sensors include: piezoelectric, piezoresistive, variable capacitance and variable reluctance.


Automotive Applications of Acceleration Sensors:

  • Collision detection and airbag deployment: To measure intensity of collision and signal to initiate airbag deployment.

  • Electronics stability programs and control: Measures acceleration along various axes, (e.g. forward, braking and cornering accelerations, to compute relative movements and regulate them).

  • Antilock braking systems.

  • Active suspension systems: Measures longitudinal and lateral accelerations as well as vehicle roll characteristics to change damper characteristics accordingly.

  • Hill descent/hold control: Measures vehicle inclination and speed to regulate system.

  • Monitoring Noise,Vibration and Harshness.

  • Vehicle navigation systems to determining vehicle location, speed, etc.



  
3.    ACTUATOR OR SERVO


servomechanism, sometimes shortened to servo, is an automatic device that uses error-sensing negative feedback to correct the performance of a mechanism and is defined by its function. It usually includes a built-in encoder. A servomechanism is sometimes called a heterostat since it controls a systems behavior by means of  heterostasis. The term correctly applies only to systems where the feedback or error-correction signals help control mechanical position, speed or other parameters. For example, an automotive power window control is not a servomechanism, as there is no automatic feedback that controls position—the operator does this by observation. By contrast a cars cruise control uses closed loop feedback, which classifies it as a servomechanism.

Uses

Position control

A common type of servo provides position control. Servos are commonly electrical or partially electronic in nature, using an electric motor as the primary means of creating mechanical force. Other types of servos use hydraulicspneumatics, or magnetic principles. Servos operate on the principle of negative feedback, where the control input is compared to the actual position of the mechanical system as measured by some sort oftransducer at the output. Any difference between the actual and wanted values (an "error signal") is amplified (and converted) and used to drive the system in the direction necessary to reduce or eliminate the error. This procedure is one widely used application of control theory.

Speed control

Speed control via a governor is another type of servomechanism. The steam engine uses mechanical governors; another early application was to govern the speed of water wheels. Prior to World War II the constant speed propeller was developed to control engine speed for maneuvering aircraft. Fuel controls for gas turbine engines employ either hydromechanical or electronic governing.

Other

Positioning servomechanisms were first used in military fire-control and marine navigation equipment. Today servomechanisms are used in automatic machine tools, satellite-tracking antennas, remote control airplanes, automatic navigation systems on boats and planes, and antiaircraft-gun control systems. Other examples are fly-by-wire systems inaircraft which use servos to actuate the aircrafts control surfaces, and radio-controlled models which use RC servos for the same purpose. Many autofocus cameras also use a servomechanism to accurately move the lens, and thus adjust the focus. A modern hard disk drive has a magnetic servo system with sub-micrometre positioning accuracy. In industrial machines, servos are used to perform complex motion, in many applications.


  

4.    ADJUSTABLE SHOCKS AND SPRINGS



A shock absorber (in reality, a shock "damper") is a mechanical or hydraulic device designed to absorb and damp shock impulses. It does this by converting the kinetic energyof the shock into another form of energy (typically heat) which is then dissipated. A shock absorber is a type of dashpot.


Description

Pneumatic and hydraulic shock absorbers are used in conjunction with cushions and springs. An automobile shock absorber contains spring-loaded check valves and orifices to control the flow of oil through an internal piston (see below).[1]

One design consideration, when designing or choosing a shock absorber, is where that energy will go. In most shock absorbers, energy is converted to heat inside the viscous fluid. In hydraulic cylinders, the hydraulic fluid heats up, while in air cylinders, the hot air is usually exhausted to the atmosphere. In other types of shock absorbers, such as electromagnetic types, the dissipated energy can be stored and used later. In general terms, shock absorbers help cushion vehicles on uneven roads.

Vehicle suspension

Available link for download

Read more »

Wednesday, October 5, 2016

RF CONTROLLED ROBOTIC BOAT TO TRAVEL IN WATER

RF CONTROLLED ROBOTIC BOAT TO TRAVEL IN WATER


ABSTRACT:


                      This project is a prototype boat that can travel in water. This robot is powered by 9V rechargeable battery. The direction of the robot can be controlled by an RF remote. This can be moved forward and reverse direction using geared motors of 60RPM. Also this robot can take sharp turnings towards left and right directions. This project uses AT89S52 MCU as its controller. A high sensitive wireless camera with voice is interfaced to the kit.


When the robot is moving on water surface, the system transmits images and voice signals around the robot to television at a remote place. User can monitor the images and voice signals on Television.


The RF modules used here are STT-433 MHz Transmitter, STR-433 MHz Receiver, HT12E RF Encoder and HT12D RF Decoder. The three switches are interfaced to the RF transmitter through RF Encoder. The encoder continuously reads the status of the switches, passes the data to the RF transmitter and the transmitter transmits the data.

           


This project uses 9V battery. This project is much useful for mines detection and surveillance applications.











If you want to buy this project, drop email on technofieldsystems@gmail.com



Available link for download

Read more »

Thursday, September 29, 2016

Tips in Finding Any Device’s IP Address and MAC Address

Tips in Finding Any Device’s IP Address and MAC Address


Image result for ip address 
The best system to Find Any Devices IP Address, MAC Address, and Other Network Connection Details

Side point of view of a mans hands using propelled cell as a part of inside at his teaming up spot using development

Each framework joined device — compact workstations, desktops, mobile phones, tablets, and everything else — has an IP address on the framework and a unique MAC address. There are various reasons you might need to find this information, so heres the methods by which to find it on each one of the convenient workstations, PDAs, and tablets you might have lying around.

This will basically demonstrat to you an individual devices IP address. Youre probably behind a switch on your framework, so your open IP address — your IP address on the Internet — is unmistakable and must be found elsewhere.

Windows 10

On Windows 10, you can find this information more quickly than you could on past types of Windows. Click the Wi-Fi image in the notice range, or structure plate, and after that tap the "Framework settings" join.

If its not a Wi-FI affiliation, you can open the Settings application, select "Framework and Internet, select the sort of affiliation it is, and hunt down more information.

Click "Moved options" in the window that appears. (You can in like manner accomplish this window by opening the Settings application and investigating to Network and Internet > Wi-Fi.) Scroll down and youll see this information under the Properties heading.

Windows 7, 8, 8.1, and 10

You can find this information in diverse courses on past versions of Windows. Clearly, these frameworks still work on Windows 10, too.

Essentially open the Control Panel, click "Point of view framework status and errands" under Network and Internet, click "Change connector settings", right-tap the affiliation youre using, and select "Status". Click the "Purposes of interest" catch under Connection and youll see all the information you need to know in an once-over.

You can in like manner find this information by opening a Command Prompt window and running the going with request:

Mac OS X

The most direct, quickest way to deal with find this information on Mac OS X is to hold down the "Decision" key on your console and tap the Wi-Fi image on the menu bar at the most noteworthy purpose of your screen. The Option key enables smart access to status information elsewhere in Mac OS X, too.

Youll see your Macs IP address by "IP address." Other unobtrusive components here will demonstrat to you information about your remote framework and your switchs IP address.

You can in like manner find this information by tapping the Apple menu on the menu bar at the most elevated purpose of your screen, selecting "Structure Preferences", tapping the "Framework" image, selecting the framework affiliation, clicking "Advanced", and tapping the "TCP/IP" tab. Youll find the MAC address under the "Hardware" tab.

iPhone and iPad

To find this information on an iPhone, iPad, or iPod Touch running Apples iOS, first open the Settings application. In the Settings application, tap "Wi-Fi" and after that tap the "i" image to the other side of the Wi-Fi affiliation youre starting now joined with. Youll see the IP address and other framework purposes of enthusiasm here.

To rather find the MAC address, investigate to General > About in the Settings application. Look down and look at the "Wi-Fi Address".

Android

On Android, you can find this information in the Settings application. Pull down from the most noteworthy purpose of the screen and tap the gear image or open your application drawer and tap the "Settings" application image to open it.

Tap the "Wi-Fi" elective under Wireless and frameworks, tap the menu get, and tap "Advanced" to open the Advanced Wi-Fi screen. Youll find the IP address and MAC address appeared at the base of this page.

As constantly on Android, these decisions may be in a to some degree better place dependent upon how your maker revamp your contraption. The above methodology was performed on a Nexus 7 running Android 6.0 Marshmallow.

Chrome OS

On a Chromebook, Chromebox, or some other device running Chrome OS, you can find this in the Settings screen.

The speediest way to deal with get to this information is to tap the status range at the base right corner of your screen, tap the "Connected with [Wi-Fi Network Name]" decision in the summary, and click the name of the framework youre joined with. An affiliation information page will open.

You could in like manner open the Settings page by tapping the menu find in Chrome and selecting "Settings". Click the name of the Wi-Fi framework youre joined with at the most elevated purpose of the Settings page, and subsequently click it afresh. Youll see the same page.

The MAC area is under the "Affiliation" tab, while the IP area is under the "Affiliation" Tab.

Linux

On a present day Linux structure, this information should be successfully open from the status or notice district. Scan for a framework image, click it, and select "Affiliation Information". Youll see the IP address and other information here — the "hardware area" is the MAC address.

This is the way NetworkManager does it, and most Linux scatterings now use NetworkManager.

If you just have permission to a terminal, run the going with request. Disregard the "lo" interface, which is an area loopback interface. In the screenshot underneath, "eth0" is the framework relationship with look at.

ifconfig

The system is near on distinctive devices, from preoccupation consoles to set top boxes. YOu should have the ability to open the Settings screen and hunt down a "Status" screen that demonstrates this information, a "Framework" screen that may show framework affiliation unpretentious components some spot, or an once-over of information on an "About" screen. In case you cant find these purposes of interest, perform a web search for you

Available link for download

Read more »

Wednesday, September 28, 2016

Tutorial SPD Android Mobile Root Read Full Flash Backup in PAC format

Tutorial SPD Android Mobile Root Read Full Flash Backup in PAC format


Now I telling You How To Root & Read SPD Android Full Flash Backup In PAC Format


How To Root Lemon P5

1.Mobile On Condition.
2.USB Debug Mode Enabled.
3.Minimum 2Gb Memory Card Inserted into Phone With 32 BIT Formatte.
4.Now Connect To Pc Port.
5.Open Volcano Box Software.
6.Go to SPD Tab.
7.Select 6820/8810.
8.Select One-Key Root.
9.Select ADB_ROOT from Option.
10. Untick Auto-Detect Pinouts.
11.Click on Run.
12.Mobile will Detect Phone on ADB.
13.Some Times After Mobile Restart & Root Done.
Root Image Below

How To Read Full Flash SPD Android Mobile Lemon P5
1.Mobile On Condition.
2.USB Debug Mode Enabled.
3.Minimum 2Gb Memory Card Inserted into Phone With 32 BIT Formatte.
4.Now Connect To Pc Port.
5.Open Volcano Box Software.
6.Go to SPD Tab.
7.Select 6820/8810.
8.Select One-Key Root.
9.Select Backup Flash from Option.
10. Untick Auto-Detect Pinouts.
11.Click on Run.
12.Mobile will Detect Phone on ADB.
13. Some Times After Volcano Box Software Ask Where Save File.
14.Make Flash File Path.
15.Some Times After Mobile Read Done.
Lemon P5 SPD Android Mobile Read Done In Volcano Box Type
Read Flash Image 1
Read Flash Image 2
Read Flash Image 3
Read Flash Image 4
Tip=Now Read Flash Done IN Volcano Box Flash File Type Not In PAC File type


Here I Telling You How To Making PAC File

1.First Download ResearchDownload_VER_2.9.7017
ResearchDownload_VER_2.9.7017 BY YASH MOBILE - Download - 4shared - gopal parmar

2.Open ResearchDownload_VER_2.9.7017
3.Open To Settings.
4.Go To Main Page.
5.Select All Files.
6.Select Product I Select SC6820 Because Lemon P5 In SPD Cpu.

Here All Flash File Read Flash By Volcano Box


7.Put Various File In This Format.



8.Click On Packet



9.Save Flash File Path In PAC Format.


10.Now Complete PAC File


11.Now Ready Lemon P5 Flash File In PAC Format

Available link for download

Read more »

Tuesday, September 27, 2016

Nokia Infineon Flash File 7 in 1Setup Download

Nokia Infineon Flash File 7 in 1Setup Download



NOKIA INFINEON
1280 RM-647(5.80) 1616 RM-125(3.61 , 4.65 , 5.80) 1800 RM-653(5.80) C1 RM-689(3.00) C1.01(3.35) C2 RM-704(3.45) X1.01,RM-713(V05.34) (Urdu , Arabic) Languages with inis in 1 Setup exe




INFINEON 7 IN 1 SETUP.exe

File size : 89.6 MB Only

Available link for download

Read more »

Top 10 Pharmaceutical Companies In Nigeria Update

Top 10 Pharmaceutical Companies In Nigeria Update


Top 10 Pharmaceutical Companies In Nigeria - Update: Pharmaceutical companies in any nations are responsible for the development, production, and marketing of pharmaceuticals products/drugs that are used for human medications.



Pharmacy as a profession comes with a lot of profit due to the rate at which pharmaceutical products are being patronised. These products should come with an expected standard thereby doing what it was produced for.  Students currently studying Pharmacy in any university in Nigeria can look up to the following standard pharmaceutical companies ranked as Top 10 for their internship.
  • Click hereto view top 10 list of pharmaceutical companies in Nigeria

Available link for download

Read more »

Sunday, September 25, 2016

Tafheem ul Quran in Urdu PDF free Download by Maulana Syed Maududi

Tafheem ul Quran in Urdu PDF free Download by Maulana Syed Maududi


Tafheem-ul-Quran by Maulana Syed Maududi Free Download in PDF format, Quran tafseer in urdu PDF free Download
  Urdu Tafheem-ul-Quran PDF
0 subfolder(s)
119 file(s)
Total Size: 191.87 MB
 Name Size Type
 File - Click to learn details 001 Surah Al Fatihah.pdf 239.47 KB Adobe Acrobat Document
 File - Click to learn details 002 Surah Baqarah.pdf 9.97 MB Adobe Acrobat Document
 File - Click to learn details 003 Surah Al Imran.pdf 4.72 MB Adobe Acrobat Document
 File - Click to learn details 004 Surah An Nisa.pdf 6.31 MB Adobe Acrobat Document
 File - Click to learn details 005 Surah Al Maidah.pdf 4.56 MB Adobe Acrobat Document
 File - Click to learn details 006 Surah Al Anam.pdf 4.76 MB Adobe Acrobat Document
 File - Click to learn details 007 Surah Al Araf.pdf 6.02 MB Adobe Acrobat Document
 File - Click to learn details 008 Surah Al Anfal.pdf 2.40 MB Adobe Acrobat Document
 File - Click to learn details 009 Surah Al Taubah.pdf 4.69 MB Adobe Acrobat Document
 File - Click to learn details 010 Surah Yunus.pdf 3.21 MB Adobe Acrobat Document
 File - Click to learn details 011 Surah Hud.pdf 2.97 MB Adobe Acrobat Document
 File - Click to learn details 012 Surah Yusuf.pdf 3.27 MB Adobe Acrobat Document
 File - Click to learn details 013 Surah Ar-Rad.pdf 1.38 MB Adobe Acrobat Document
 File - Click to learn details 014 Surah Ibrahim.pdf 1.34 MB Adobe Acrobat Document
 File - Click to learn details 015 Surah Al-Hijr.pdf 1.21 MB Adobe Acrobat Document
 File - Click to learn details 016 Surah An-Nahl.pdf 3.20 MB Adobe Acrobat Document
 File - Click to learn details 017 Surah Al-Isra.pdf 3.74 MB Adobe Acrobat Document
 File - Click to learn details 018 Surah Al-Kahf.pdf 2.49 MB Adobe Acrobat Document
 File - Click to learn details 019 Surah Maryam.pdf 1.61 MB Adobe Acrobat Document
 File - Click to learn details 020 Surah Taha.pdf 3.13 MB Adobe Acrobat Document
 File - Click to learn details 021 Surah Al-Anbiya.pdf 2.71 MB Adobe Acrobat Document
 File - Click to learn details 022 Surah Al-Hajj.pdf 3.19 MB Adobe Acrobat Document
 File - Click to learn details 023 Surah Al-Muminun.pdf 2.63 MB Adobe Acrobat Document
 File - Click to learn details 024 Surah An-Nur.pdf 7.05 MB Adobe Acrobat Document
 File - Click to learn details 025 Surah Al-Furqan.pdf 2.34 MB Adobe Acrobat Document
 File - Click to learn details 026 Surah Ash-Shuara.pdf 4.11 MB Adobe Acrobat Document
 File - Click to learn details 027 Surah An-Naml.pdf 3.10 MB Adobe Acrobat Document
 File - Click to learn details 028 Surah Al-Qasas.pdf 3.21 MB Adobe Acrobat Document
 File - Click to learn details 029 Surah Al-Ankabut.pdf 2.66 MB Adobe Acrobat Document
 File - Click to learn details 030 Surah Al-Rum.pdf 2.32 MB Adobe Acrobat Document
 File - Click to learn details 031 Surah Luqman.pdf 1.30 MB Adobe Acrobat Document
 File - Click to learn details 032 Surah As-Sajdah.pdf 1.06 MB Adobe Acrobat Document
 File - Click to learn details 033 Surah Al-Ahzab.pdf 5.35 MB Adobe Acrobat Document
Available link for download

Read more »