Tuesday, June 22, 2010

Using Ant to Automate Building Android Applications

The standard way to develop and deploy Android applications is using Eclipse. This is great because it is free, easy to use, and many Java developers already use Eclipse. To deploy your applications using Eclipse, you simply right-click on the on the project, choose to export the application, and follow the prompts

There are a few things we cannot easily do with this system, though. Using the Eclipse GUI does not allow one to easily:
  • Add custom build steps.
  • Use an automated build system.
  • Use build configurations.
  • Build the release project with one command.
Fortunately, the Android SDK comes equipped with support for Ant, which is a common build script system popular among Java developers. It is how you can develop Android applications without using Eclipse, if you so desire. This tutorial will show you how to incorporate an Ant build script into your Android projects (even if you still develop with Eclipse), create your release package ready for Marketplace deployment in one step, create a build configuration using a properties file, and alter your source files based on the configuration.

You can use the Ant build script to solve all of the problems listed above.  This tutorial expects you to already have your Android SDK setup correctly, and to have Ant installed.  It will also help to know a little about Ant if you want to add custom build steps, but you don't really need to know anything to follow the tutorial here.

Although I don't personally use an automated build system for my projects, I do use it to create configuration files and to run custom build scripts. I also believe that it is very important to have a one-step build system, which means that there is only one command to create your final release package (I'll explain why later). You can already run your application in debug mode with Eclipse with one step, but I feel it is important to be able to create the release package in one step as well.

Finally, if this is too much reading for your taste, you can jump straight into the summary for a few simple steps, and download the sample application at the end of the tutorial.

Ant in a nutshell

A build script in Ant is an XML file.  The default filename for a Ant build file is build.xml. Build steps in Ant are called tasks, which are defined by targets in the build file. When you build your Android application with the default build script, you would type ant release at the command line. In this case, Ant looks for the default filename build.xml, and release is the target which it builds. The release target builds the application ready for release (as opposed to for debugging). Another example would be ant clean, which cleans the project binaries.

You can do pretty much anything you can imagine with more custom build scripts, from copying files to making network calls. More detail about how to use Ant is beyond the scope of this tutorial, but I will show you some useful tricks.

One custom script which I enjoy very much uses ProGuard to obfuscate and shrink the code. I see the code size of my applications drop by a whopping 50% using it. It helps for users who may think your application is taking too much space on their device. I'll explain how to do this in a future tutorial.

Adding build.xml to an existing project

If you already have a project that you'd like to add the Ant build script to, then there is an easy command line tool you can use. Open up a command prompt and navigate to the base directory of your project. From there, use the command:
android update project --path .

Here is an example of successful output:
>android update project --path .
Updated local.properties

Added file C:\dev\blog\antbuild\build.xml

If the android command is not found, then you need to update your path to include the Android tools.  On Windows, you can use something like set path=%PATH%;C:\dev\android-sdk-windows\tools (substituting your actual Android installation directory), or even better add it to your path persistently by updating the environment variables through your system properties.

Now you will have a working ant build script in build.xml.  You can test your setup by typing ant at the command prompt, and you should receive something similar to the following boilerplate help:

>ant
Buildfile: C:\dev\blog\antbuild\build.xml
    [setup] Android SDK Tools Revision 6
    [setup] Project Target: Android 1.5
    [setup] API level: 3
    [setup] WARNING: No minSdkVersion value set. Application will install on all Android versions.
    [setup] Importing rules file: platforms\android-3\ant\ant_rules_r2.xml

help:
     [echo] Android Ant Build. Available targets:
     [echo]    help:      Displays this help.
     [echo]    clean:     Removes output files created by other targets.
     [echo]    compile:   Compiles project's .java files into .class files.
     [echo]    debug:     Builds the application and signs it with a debug key.
     [echo]    release:   Builds the application. The generated apk file must be
     [echo]               signed before it is published.
     [echo]    install:   Installs/reinstalls the debug package onto a running
     [echo]               emulator or device.
     [echo]               If the application was previously installed, the
     [echo]               signatures must match.
     [echo]    uninstall: Uninstalls the application from a running emulator or
     [echo]               device.

BUILD SUCCESSFUL

If the ant command is not found, then you need to update your path. Like above, on Windows use set path=%PATH%;C:\dev\apache-ant-1.8.1\bin (substituting your actual Ant installation directory), or even better update your environment variables.

At this point you should be able to type ant release at the command prompt, which will build the project, placing the unsigned .apk file inside of the bin/ directory.

Note that the output from Ant will show further instructions under -release-nosign: which says to sign the apk manually and to run zipalign.  We'll get to these steps later in the signing section below.

Creating a new project with build.xml

If you've already created your project and followed the above instructions, you can skip this section. If not, you can may either create a new Android project using the regular Eclipse method (via New > Other... > Android Project), and follow the instructions in the above section, or you can use the command line as described here.

android create project --name YourProjectName --path C:\dev\YourProject --target android-3 --package com.company.testproject --activity MainActivity

Here is an example of successful output:

>android create project --name YourTestProject --path c:\temp\TestProject --target android-3 --package com.company.testproject --activity MainActivity

Created project directory: c:\temp\TestProject
Created directory C:\temp\TestProject\src\com\company\testproject
Added file c:\temp\TestProject\src\com\company\testproject\MainActivity.java
Created directory C:\temp\TestProject\res
Created directory C:\temp\TestProject\bin
Created directory C:\temp\TestProject\libs
Created directory C:\temp\TestProject\res\values
Added file c:\temp\TestProject\res\values\strings.xml
Created directory C:\temp\TestProject\res\layout
Added file c:\temp\TestProject\res\layout\main.xml
Added file c:\temp\TestProject\AndroidManifest.xml
Added file c:\temp\TestProject\build.xml

Note: To see the available targets, use android list target and you should see something like:

>android list target
id: 1 or "android-3"
     Name: Android 1.5
     Type: Platform
     API level: 3
     Revision: 4

     Skins: HVGA (default), HVGA-L, HVGA-P, QVGA-L, QVGA-P
In the above case, you can use either 1 or android-3 as the target ID.  In the sample project, I chose android-4, which corresponds to Android 1.6.

Once the project is created, you can test if your project build is setup correctly by typing ant at the command line.  See the above section for further instructions.

Synchronizing with Eclipse

If you open the Ant build script, build.xml, in Eclipse, you will see an error on the second line of the file at this line: <project name="MainActivity" default="help">.  The problem with this line is that it is saying that the default Ant target is "help", but the actual Ant targets used in the build file are imported from another location, which the Eclipse editor does not recognize. The import is done at the line <taskdef name="setup", which imports Ant files from the Android SDK.

Unfortunately, while this error is active in your project, you cannot debug your project from Eclipse, even though the Ant build.xml is not needed. There are two solutions. You can remove default="help" from the file, which will remove the error in Eclipse. If you do this, and type ant at a command prompt without any targets (as opposed to "ant release"), you won't get the default help.  Or, you can copy the imported Ant files directly into your code, which is exactly what you must do if you would like to customize your build. If you follow this tutorial, you won't have to worry about this error. See the Customizing the build section for more information.

Automatically signing your application

Before an application can be delivered to a device, the package must be signed. When debugging using Eclipse, the package is technically signed with a debugging key. (Alternatively, you can build a debug package using ant debug) For actual applications delivered to the Android Marketplace, you need to sign them with a real key. It is useful to put this step into the build process. On top of the ease of automating the process, it allows you to build your application in one step. (One-step builds are a Good IdeaTM)

If you have not already created a key, you can do so automatically using Eclipse (Right click project > Android Tools > Export Signed Application Package...), or follow the instructions here.

Now we must tell the build script about our keystore. Create a file called build.properties in your project's base directory (in the same directory as build.xml and the other properties files), if it does not already exist. Add the following lines:
key.store=keystore
key.alias=www.androidengineer.com

Where keystore is the name of your keystore file and change the value of key.alias to your keystore's alias. Now when you run ant release, you will be prompted for your passwords, and the build will automatically sign and zipalign your package.

Of course, having to enter your password doesn't make for a one-step build process. So you could not use this for an automated build machine, for one thing. It also has the disadvantage of requiring you to type the password, which it will display clearly on the screen, which may be a security issue in some circumstances.  We can put the passwords into build.properties as well, which will solve the issue:
key.store.password=password
key.alias.password=password

Caution: There can be several issues with storing the keystore and passwords. Depending on your organization's security policies, you may not be able to store the passwords in version control, or you may not be able to give out the information to all developers who have access to the source. If you want to check in the keystore and the build.properties file, but not the passwords, you can create a separate properties file which could only be allowed on certain machines but not checked in to version control. For example, you could create a secure.properties file which goes on the build machine, but not checked in to version control so all developers wouldn't have access to it; import the extra properties file by adding <property file="secure.properties" /> to build.xml. Finally, you could always build the APKs unsigned with ant release by not adding any information to the properties files.  The package built using this method will need to be signed and aligned.

Customizing the build

Now that we've got a working Ant build script, we can create a one-step build. But if we want to customize the build further, we'll have to do a few extra steps. You can do anything with your build that you can do with Ant. There are a few things we'll have to do first.

The Ant targets are actually located in the Android SDK.  The targets are what you type after ant on the command line, such as release, clean, etc.  To customize the build further, we need to copy the imported targets into our own build file.

If you look in build.xml, you can see the instructions for how to customize your build steps:

The rules file is imported from
<SDK>/platforms/<target_platform>/templates/android_rules.xml
To customize some build steps for your project:
  - copy the content of the main node <project> from android_rules.xml
  - paste it in this build.xml below the <setup /> task.
  - disable the import by changing the setup task below to <setup import="false" />

Find the android_rules.xml file in your Android SDK. For example, mine is located at C:\dev\android-sdk-windows\platforms\android-4\templates. There, copy almost the entire file, excluding the project node (copy below <project name="MainActivity"> to above </project>), and paste it in your build.xml file. Also, change the line <setup /> to <setup import="false"/>.

Now you can change around the build as you please. Test that the build file is still working properly by running a build.  For an example of what you can do with the custom build script, see the next section.

Using a Java configuration file

This is a great way to use a build property to affect the source code of your Android application. Imagine a configuration class in your project which sets some variables, such as a debugging flag or a URL string. You probably have a different set of these values when developing than when you release your application. For example, you may turn the logging flag off, or change the URL from a debugging server to a production server.

public class Config
{
    
/** Whether or not to include logging statements in the application. */
    
public final static boolean LOGGING = true;
}

It would be nice to have the above LOGGING flag be set from your build. That way, you can be sure that when you create your release package, all of the code you used for debugging won't be included. For example, you may have debugging log statements like this:

if (Config.LOGGING)
{
    
Log.d(TAG"[onCreate] Success");
}

You will probably want to leave these statements on during development, but remove them at release.  In fact, it is good practice to leave logging statements in your source code. It helps with later maintenance when you, and especially others, need to know how your code works. On the other hand, it is bad practice for an application to litter the Android log with your debugging statements. Using these configuration variables allows you to turn the logging on and off, while still leaving the source code intact.

Another great advantage of using this method of logging is that the bytecode contained within the logging statement can be completely removed by a Java bytecode shrinker such as ProGuard, which can be integrated into your build script.  I'll discuss how to do this in a later blog post.

A nice way to set the Config.LOGGING flag is in your build properties.  Add the following to build.properties:
# Turn on or off logging.
config.logging=true

To have this build property be incorporated into our source code, I will use the Ant type filterset with the copy task. What we can do is create a Java template file which has tokens such as @CONFIG.LOGGING@ and copy it to our source directory, replacing the tokens with whatever the build properties values are.  For example, in the sample application I have a file called Config.java in the config/ directory.

public class Config
{
    
/** Whether or not to include logging statements in the application. */
    
public final static boolean LOGGING = @CONFIG.LOGGING@;
}

Please note that this is not a source file, and that config/Config.java is notthe actual file used when compiling the project. The file src/com/yourpackage/Config.java, which is the copied file destination, is what will be used as a source file.

Now I will alter the build file to copy the template file to the source path, but replace @CONFIG.LOGGING with the value of the property config.logging, which is true. I will create an Ant target called config which will copy the above template to the source directory. This will be called before the compile target.

    <!-- Copy Config.java to our source tree, replacing custom tokens with values in build.properties. The configuration depends on "clean" because otherwise the build system will not detect changes in the configuration. -->
<target name="config">

<property name="config-target-path" value="${source.dir}/com/androidengineer/antbuild"/>

<!-- Copy the configuration file, replacing tokens in the file. -->
<copy file="config/Config.java" todir="${config-target-path}"
     overwrite="true" encoding="utf-8">
<filterset>
<filter token="CONFIG.LOGGING" value="${config.logging}"/>
</filterset>
</copy>

<!-- Now set it to read-only, as we don't want people accidentally
    editing the wrong one. NOTE: This step is unnecessary, but I do
    it so the developers remember that this is not the original file. -->
<chmod file="${config-target-path}/Config.java" perm="-w"/>
<attrib file="${config-target-path}/Config.java" readonly="true"/>

</target>

To make this Ant target execute before the compile target, we simply add config to the dependency of compile<target name="compile" depends="config, -resource-src, -aidl". We also make the config target call clean, because otherwise the build system will not detect changes in the configuration, and may not recompile the proper classes.

Note: The above Ant task sets the target file (in your source directory) to read-only.  This is not necessary, but I add it as a precaution to remind me that it is not the original file that I need to edit.  When developing, I will change the configuration sometimes without using the build, and Eclipse will automatically change the file from read-only for me.  I also do not check in the target file into version control; only the original template and build.properties.

Version control

Do not check in the local.properties file which is generated by the Android build tools. This is noted in the file itself; it sets paths based on the local machine. Do check in the default.properties file, which is used by the Android tools, and build.properties, which is the file which you edit to customize your project's build.

I also don't check in the target Config.java in the source directory, nor anything else is configured by the build. I don't want local changes to propagate to other developers, so I only check in the original template file in the config/ directory.

In my projects, when I release a new version of a project I always check in the properties file and tag it in the source repository with a tag name such as "VERSION_2.0". That way we are certain of what properties the application was built with, and we can reproduce the application exactly as it was released, if we later need to.

Summary

1. At the command line run android create project, or android update project in your project base directory if it already exists.
2. (Optional) Add key.store and key.alias to build.properties if you want to include the signing step in your build.
3. (Optional) Add key.store.password and key.alias.password to build.properties if you want to include the keystore passwords, to make the build run without any further input needed.
4. (Optional) If you would like to further customize the build, copy the SDK Ant build code from <SDK>/platforms/<target_platform>/templates/android_rules.xmlto your local build.xml and change <setup /> to <setup import="false"/>.
5. Use ant release to build your project. It will create the package in bin/.

Sample Application

The sample application is a simple Hello World application, but it also includes the custom build script as described in this tutorial.  It also includes the Config.java which is configurable by the build. First, you must run "android update project -p ." from the command line in the project's directory to let the tools set the SDK path in local.properties. Then you can turn on and off logging by changing the value of config.logging in build.properties. Finally, run ant release to build the application, which will create the signed bin/MainActivity-release.apk file ready to be released.

Project source code - antbuild.zip (13.4 Kb)

485 comments:

«Oldest   ‹Older   401 – 485 of 485
Kashi Digital Agency said...

Seo company in Varanasi, India : Best SEO Companies in Varanasi, India: Hire Kashi Digital Agency, best SEO Agency in varanasi, india, who Can Boost Your SEO Ranking, guaranteed SEO Services; Free SEO Analysis.

Best Website Designing company in Varanasi, India : Web Design Companies in varanasi We design amazing website designing, development and maintenance services running from start-ups to the huge players


Wordpress Development Company Varanasi, India : Wordpress development Company In varanasi, india: Kashi Digital Agency is one of the Best wordpress developer companies in varanasi, india. Ranked among the Top website designing agencies in varanasi, india. wordpress website designing Company.

E-commerce Website designing company varanasi, India : Ecommerce website designing company in Varanasi, India: Kashi Digital Agency is one of the Best Shopping Ecommerce website designing agency in Varanasi, India, which provides you the right services.

Sai Infosys said...

Very nice blog. Sai Infosys is one of the best Tally Training Institute in Chennai .



Tally Training Institute in Chennai

tally GST training in Chennai

Company Account training in Chennai

Taxation Training Institute in Chennai

Tally Prime in Chennai

Python training in Chennai

Sai Infosys said...

Thanks for Sharing this Information. But Sai Infosys is one of the best tally training in Chennai. Sai infosys provides best Online Tally Courses in Chennai .

Tally Training Institute in Chennai

tally GST training in Chennai

Company Account training in Chennai

Taxation Training Institute in Chennai

Tally Prime in Chennai

Python training in Chennai

kp webtech said...



Wordpress Development Company in Chennai

We deliver custom Wordpress websites that are high in style and solid in substance. As masters of the Wordpress web publishing platform and are ready to share expertise as a top custom Wordpress development company to help you scale new heights.

KP Webtech said...


,Woocommerce Development Company in Chennai,

The most versatile of webstores use Woocommerce to succeed. With over 30% of online stores worldwide under its belt, Woocommerce is the way forward and in this we help you as trusted woocommerce developers in Chennai.

aiviviu said...

Keep up the good work , I read few posts on this web site and I conceive that your blog is very interesting
vietjet bay cao hùng

tiền vé máy bay đi hàn quốc

đặt vé máy bay đi seoul giá rẻ

vé máy bay hà nội đi nhật bản

vé máy bay từ hà nội đi tokyo

Đồ gia dụng said...

cửa lưới tự cuốn
cửa lưới chống muỗi hà nội
lưới chống muỗi inox

aiviviu said...

I simply couldn't resist praising the way you play with words. This is a perfect example of a well-written blog post.
vé máy bay đà nẵng đi đài bắc

săn vé máy bay đi nhật giá rẻ

vé máy bay từ hà nội đi tokyo

vé máy bay đi busan hàn quốc

giá vé máy bay hà nội seoul

technology said...

You will eventually learn to drive, but at the cost of unnecessary pressure and information a little too soon than required. However, if one starts with Python training it would be like learning to drive automatic data science course in india

Cubestech said...

Reading your blog is resonating professionalism. Thanks for sharing.

"Best mobile app development service in chennai
Best ERP software solutions in chennai
Digital Marketing Agency in Chennai
Best web development company in chennai"

Anonymous said...


I have read your article, it is very informative and helpful for me. I admire the valuable information you offer in your articles. Thanks for posting it.

zong internet packages
Zong Call Packages

BTree Systems, Software (IT) Training Institute said...

https://www.btreesystems.com
aws training in chennai
Python training in Chennai
data science training in chennai
hadoop training in chennai
machine learning training chennai

Anonymous said...

upcoming event

Anonymous said...

amazing topics

sweet dreams cattery said...

it's so refreshing to see a post that talks straight to the point. thanks so much for writing about this it has really helped me with building my experience. thanks a lot

Golden and Labrador Retriever Puppies For Sale
Golden Retriever Puppies For Sale   

Labrador puppies for sale near me   

Black Labrador puppies for sale   

white golden retriever puppies near me   
black and white.retriever puppies for sale 
retriever puppies for sale 
golden retriever puppies for sale cheap
golden retriever puppies for sale $200

golden retriever cute puppies
red golden retriever puppies
english cream golden retriever puppies
Labrador Golden Retriever Puppies For Sale
free labrador retriever puppies
labrador retriever puppies ohio
Golden and Labrador Retriever Puppies For Sale in NY
Labrador Retriever Puppies For adoption
golden retriever labrador mix puppies Sale
golden retriever vs labrador puppy
english labrador retriever puppies for sale
english labrador retriever puppies for sale near me 

black english labrador retriever puppies  
labrador retriever mix puppies 
golden retriever labrador mix puppies 
labrador retriever husky mix puppies 
golden retriever lab mix puppies 
golden retriever husky mix puppy 
black lab golden retriever mix puppies 
golden retriever mix puppies for adoption near me 
cream and white golden retriever puppies 
red and black golden retriever puppies 
golden retriever puppies for adoption near me  

sweet dreams cattery said...

I will be honest this is the most useful tips I have read till date. Thanks for putting all this together. As a newbie blogger, I am going through different stages of learning and all ups and downs what a normal newbie blogger face. But the most important thing I am not giving up and holding it until I find success. I am really positive using your thoughts and knowledge will help me to improve myself. how to potty train golden retriever puppies  golden retriever puppies for adoption near me    Great work. Keep doing this great work for us. Loved it

jency said...

digital marketing company
ecommerce service company
shopify website development
prestashop development
magento development

arshiya said...

This is good information and really helpful for the people who need information about this.
impact of social media marketing
positive effects of social media
artificial intelligence examples
advantages of php
rpa roles and responsibilities
salesforce interview questions

vivikhapnoi said...

I simply couldn't resist praising the way you play with words. This is a perfect example of a well-written blog post.

các chuyến bay từ anh về việt nam

bay từ pháp về việt nam mấy tiếng

vé máy bay khứ hồi từ đức về việt nam

ve may bay vietnam airline tu han quoc ve viet nam

Gia ve may bay Vietnam Airline tu Nhat Ban ve Viet Nam

Anonymous said...

Thank you, you guys doing great job may you like to play latest Shadow fighter 2 Mod APK

Franklin said...

Devops training in chennai

farinafathima said...

Data science is an inter-disciplinary field that uses scientific methods, processes, algorithms and systems to extract knowledge and insights from many structural and unstructured data. Data science is related to data mining, machine learning and big data.

Data Science Training In Hyderabad

Data Science Course In Hyderabad

guptha said...

Great article Thank you for giving this article.
function overloading python
python packages list

vé máy bay từ Nhật Bản về Việt Nam said...

Mua vé tại Aivivu, tham khảo

vé máy bay đi Mỹ hạng thương gia

vé máy bay vinh đi tp hồ chí minh

mua vé máy bay đà lạt đi hà nội

giá vé máy bay sài gòn nha trang

đặt vé máy bay giá rẻ đi quy nhơn

taxi sân bay nội bài

vé máy bay từ Nhật Bản về Việt Nam said...

Aivivu chuyên vé máy bay, tham khảo

ve may bay tu han quoc ve viet nam

vé máy bay vinh đi sài gòn giá rẻ

vé máy bay từ sài gòn về hà nội

máy bay hà nội nha trang

vé máy bay đi Mỹ khứ hồi

taxi sân bay nội bài

AchieversIT- UI/Web Development, Digital Marketing,Angular,Reactjs Training said...

really liked it a lot very useful appericated

http://achieversit.com/

AchieversIT- UI/Web Development, Digital Marketing,Angular,Reactjs Training said...

very helpful blog
http://achieversit.com/

vivikhapnoi said...

I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!
bay từ nga về việt nam

khi nào có chuyến bay từ anh về việt nam

chuyến bay từ châu âu về việt nam

các chuyến bay từ đức về việt nam hôm nay

Lịch bay từ Hàn Quốc về Việt Nam hôm nay

dat ve may bay gia re tu Nhat Ban ve Viet Nam

aishu said...

Awesome post.Thanks for sharing. AWS Training in Chennai

salome said...

your blog seems informative and interesting
best-angular-training in chennai |

angular-Course in Chennai

Rohit Kumar said...

Hii, thankyou so much sir for in this problem solution. it is valueable post.
Also Check:

Short Instagram Captions For Guys
Two Word Captions For Instagram
3 Word Captions For Instagram
Hot Captions For Instagram
Classy Captions For Instagram

naveen said...

I feel really happy to have seen your webpage and look forward to so many more Information reading here.

Java Training in Chennai
CCNA Training In Chennai

Home Improvement said...

Great post I must say and thanks for the information. Education is definitely a sticky subject. However, is still among the leading topics of our time. I appreciate your post and look forward to more. PPC Optimization Tools

vivikhapnoi said...

I just got to this amazing site not long ago. I was actually captured with the piece of resources you have got here. Big thumbs up for making such wonderful blog page!
Ve may bay Vietjet tu Ha Lan ve Viet Nam

Tra ve may bay gia re tu New Zealand ve Viet Nam

dịch vụ cách ly trọn gói

dịch vụ taxi sân bay nội bài

Dịch vụ làm visa Hàn Quốc bao đậu

Mẫu đơn xin visa Nhật Bản

vivikhapnoi said...

It's really amazing to have many lists of will help to make thanks a lot for sharing
đặt vé máy bay từ nga về việt nam

vé máy bay từ singapore về vinh

lịch bay từ canada về việt nam

giá vé máy bay từ đức về việt nam

vé máy bay giá rẻ tu itali ve Viet Nam

san ve may bay gia re tu Ha Lan ve Viet Nam

Cbitss Technologies said...

Nice Content About Android training Visit us for more information_ https://www.cbitss.com/android-training-in-chandigarh.html

Sara said...

Nice blog. Will look forward for more such content!

Also check this Top Mobile App Development Company

Chithra said...

https://germanschool.in/

If you’re looking to migrate to Germany for professional, you’re in the right place. We’ve trained handful of people to achieve their dreams in Germany. Our courses will help you achieve professional communication skills to thrive in Germany.


Personalized 1:1 German Language Training in Chennai

vivikhapnoi said...

I’m excited to uncover this page. I need to to thank you for ones time for this particularly fantastic read !! I definitely really liked every part of it and i also have you saved to fav to look at new information in your site.
khi nào có vé máy bay từ mỹ về việt nam

vé máy bay từ Đài Loan về việt nam

bay từ đức về việt nam mấy tiếng

vé máy bay từ san francisco về việt nam

đặt vé máy bay từ canada về việt nam

mua vé máy bay từ anh về việt nam

Alex Bryan said...

Hashlogics is a leading software development company providing custom, web, and mobile application development services to grow your business.
shopify developer los angeles

On Demand App Development Services said...

Thanks for sharing this informative content with us!

News said...

Recently evicted housemate Saga has denied crying over the disappearance of his live-in lover, Nini while together in the house.Saga

Recall that the housemates were planked by Biggie as he told Nini to secretly leave Big Brother Naija’s house for 24 hours.

Her successful disappearance affected Saga emotionally as he was seen crying over her disappearance.

During his media tour as an evicted housemate, Saga has denied ever sulking and crying all alone in the garden over her disappearance.

Watch the video below:

African News Today

Anonymous said...

Whatsapp Number Call us Now! 01537587949
outsourcing
iphone repair USA
careful
Company Registration Bangladesh
Freezing Ambulance Service

Albert M said...

FountMedia offers 100% guaranteed solutions to all the business lists and email appending requirements needed by marketers. With our 10+ years of work experience, we offer the most accurate, up-to-date, and affordable solutions to users worldwide. We offer a Business Email List, Technology Users Email List, Healthcare Email List, Appending Services.
Address: Monmouth Junction NJ (New Jersey) 08852US (United States)
Contact us:sales@fountmedia.com
Contact No: 7327039915
Website - https://www.fountmedia.com

suderesan said...

This is a fantastic piece of writing. Your essay is excellent, and you constantly provide useful information. aws training in chennai

Anonymous said...

DevOps Training In Chennai .DevOps is a set of cultural concepts, practices, and technologies that improve an organization's capacity to produce high-velocity applications and services, allowing it to evolve and improve products at a faster rate than traditional software development and infrastructure management methods.

Anonymous said...


Azure Training In Chennai .Microsoft Azure is a cloud computing platform that lets us access a wide range of services without having to buy or set up our own hardware. It facilitates rapid solution creation and provides the resources needed to execute tasks that would be impossible to complete in an on-premises environment. Azure Compute, storage, network, and application services allow us to focus on developing excellent solutions rather than worrying about putting together physical infrastructure. Azure is a growing set of Microsoft cloud computing services that hosts your existing apps, simplifies the creation of new applications, and improves our on-premises applications.

Anonymous said...

Selenium Training In Chennai .Selenium is a popular open-source framework for automating Web UI testing. Jason Huggins designed it in 2004 as an internal tool at Thought Works. Selenium is a browser automation tool that may be used with a wide range of browsers, platforms, and programming languages. Selenium can operate on Windows, Linux, Solaris, and Macintosh, among other systems.

Anonymous said...

Power BI Training In Chennai .Power BI is a data visualization and business intelligence application that converts data from a number of sources into interactive dashboards and reports. Power BI is available in a desktop version, a SaaS-based Power BI service, and mobile Power BI apps for a range of platforms. This group of services is used by business users to consume data and create BI reports.

Anonymous said...

Angular Training in Chennai .AngularJS is a JavaScript MVC framework for developing dynamic web applications on the client-side. AngularJS began as a Google project, but it is now a free and open-source framework. There is no need to learn another grammar or language because AngularJS is purely based on HTML and JavaScript.
The AngularJS framework converts static HTML into dynamic HTML. It enhances HTML's capabilities by providing built-in characteristics and components, as well as allowing users to create custom attributes using basic JavaScript.

Anonymous said...

Tableau Training In Chennai .Tableau is a Business Intelligence solution that allows you to visualize data. Users can construct and publish an interactive and shareable dashboard, which illustrates the trends, changes, and density of the data in the form of graphs and charts. To acquire and process data, Tableau may connect to files, relational databases, and Big Data sources. The program is unusual in that it enables for data blending and real-time collaboration. For visual data analysis, it is employed by corporations, academic institutions, and many government agencies. In Gartner's Magic Quadrant for Business Intelligence and Analytics Platform, it is also a leader.

Eswari said...

nice blog.
Job assured training course in chennai

job oriented courses in Chennai

Job Assured Training in Chennai

Job Oriented Training in Chennai

visa cost Turkey said...

Attractive component of the material. I just stumbled across your web site and accession capital to say that I really enjoyed your site. Fill the form with accurate and complete information about the traveler's data, passport details, date of travel and the type of visa they wish to obtain. Visa cost Turkey required to cover the expenses involved in the processing of the visa application.

David Caso said...

Technocrats Horizons develops innovative and top-notch solutions for each aspect of eCommerce. Our expert eCommerce development team comprehensively understands the customer's matured expectations.

ecommerce solutions company in india
ecommerce solutions

Unknown said...

ONLEI Technologies
Python Training
Machine Learning
Data Science
Digital Marketing
Industrial Training In Noida
Winter Training In Noida
IT Training

Dan peterson said...

what do you know, talked about this in greater detail before, but here’s the gist: Windows uses a naming convention called “Long Filenames (LFN)”. The LFN system supports file names up to 255 characters. Other operating systems, however, do not have similar restrictions. So if some Mac or Linux user were to archive a bunch of files with longer names and send you the archive, extracting that archive would leave you with files that exceed Windows’ character length. If you try to delete one of them, Windows will report that the name of the file is too long and it cannot delete it.

ben said...




donate for poor child
sponsor a child in need
volunteer in orphanage

grk trainings said...

Digital Marketing is to promote your brands or products and services by using electronic devices or the internet. Examples of digital marketing: SEO, SMM, SEM, Email Marketing, content marketing. GRK Training Institute is leading with Digital Marketing Training Course in Bangalore. GRK Training Institute has a wide range of training courses and Digital Marketing Training Courses in Bangalore mentors play an essential role in an institute, the level of education. Contact Us: +91-6302112721.
Visit Us: https://grktraining.com/digital-marketing-training-marathahalli-bangalore.php

Jin Jhon said...

Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on Coffee Culture Around the World.
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on left breast
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on tongue scraper
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on blogger outreach
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on thick toenail
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on High da guest post
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on Women's Unstitched Summer Lawn Collection
Hello your post is very helpful, thanks for wonderful information sharing. When you go about Find information and tips on Kamar Dard Ka ilaj

Günlük Burç Yorumları said...

Günlük Burç Yorumları

Reshma said...

Awesome Blog. Thanks for sharing such a worthy information. Keep update like this...
Why Learn Data Science is Important
Why Data Science is Important in Today’s world




RS Trainings said...

I am really happy to say it’s an interesting post to read . I learn new information from your article , you are doing a great job . Keep it up

Devops Training in Hyderabad

Hadoop Training in Hyderabad

Python Training in Hyderabad

Tableau Training in Hyderabad

Selenium Training in Hyderabad

informatica Training in Hyderabad

datastage Training in Hyderabad

mgowrimagalingam@gmail.com said...

data science and machine learning training
master program in data science training

SKP Knowledge Services said...

Thanks for sharing such a useful post. Web Development Services in Chennai | Android Application Development Services in Chennai

praise said...

Guide to Facebook Ads
How To Add or Remove Someone from Your Restricted List on Facebook
MetaPikin
How To Turn Facebook Notifications for Live Videos On Or Off

Unknown said...

What is the casino? - SEPT
The best casino online is the One of septcasino the poormansguidetocasinogambling.com main reasons 1등 사이트 why https://febcasino.com/review/merit-casino/ people are spending money on a game is by having a few options. 1xbet app One of the reasons

Hindi World Info said...

The key to weight-loss motivation is the same as [the] amount of fuel in a car – you don't need a motivation tank to drive, you need to keep it from running empty," says Joshua C. Klapow, PhD, Birmingham. In is a clinical psychologist at the University of Alabama and author of Living Smart: 5 Essential Skills to Change Your Health Habits Forever.

Hindi World Info said...

Gross Domestic Product (GDP) is the total monetary or market value of all finished goods and services produced within a country's borders in a specific time period. As a comprehensive measure of overall domestic output, it serves as a comprehensive scorecard of a given country's economic health.

marc monserrat said...

Thank you for sharing such a piece of great information. vinilos decorativos vinilos BARTOP vinilos decorativos TIENDAS vinilos decorativos infantiles vinilos decorativos frases vinilos vinilos decorativos barberías

Government Jobs in Haryana said...

Thanks for this blog. It is really helpful.

mdsu ba 1st year result name wise

auraelevators said...

Aura Elevators is functioning as a manufacturer and supplier of a vast assortment of elevators, elevator spare parts and escalator. We are a reputed name in the market for offering safe and reliable goods & Passenger elevating Solutions.

Elevator Manufacturers in Dwarka
Best Capsule Elevator Manufacturers in Delhi
Best Passenger Elevator Manufacturers in Dwarka
Best Car Elevator Manufacturers in Delhi
Best Dumbwaiter Manufacturers in Delhi
Elevator Manufacturers in Dwarka

Sanjana said...

Nice Blog..Thanks for sharing this information.

Web Designing Company in Chennai
SEO Services
Digital Marketing Company in Chennai
Mobile App Development

Travel On Rent said...
This comment has been removed by the author.
abarna said...

Thanks for sharing this nice post.project centers in chennai|best project center in chennai

Các mẫu nhà đẹp said...

The article was up to the point and described the information very effectively.
thiết kế nhà tối giản kiểu nhật

tranh treo cầu thang đẹp

đèn tường ngoài trời hiện đại

đèn led trang trí phòng khách

tủ đựng hồ sơ văn phòng

tủ giày đẹp

Anonymous said...

4 Ways Custom Business Signs Can Help Increase Sales

The Ultimate Guide to Guest Blogging in 2022

Nike Metcon 7: Meet The Most Durable Training Shoe

Flashscore24 Alternatives for Sports Live Scores

5 Things Real Estate Agents Would Like Sellers to Know

10 Canadian Gift Ideas You should Consider for Your Girlfriend

Golf Marketing said...

Thanks. This post is in the favor of Ant. If you handle with care, you ill be a good software engineer. Never think that I meant second word of Ant. This is common man's problem. Golf Marketing

cardboard boxes said...

Superbly written article cardboard boxes

Innovative academy said...
This comment has been removed by the author.
Các mẫu nhà đẹp said...



Kiểu dáng của các loại mẫu kệ tivi treo tường phòng khách

Biệt thự sang trọng có bể bơi cao cấp

VỊ TRÍ ĐẶT BẾP THEO CHUẨN PHONG THỦY

Wiznox Technologies said...

I really find this interesting. Thanks for sharing.

For Any device, any platform, and any industry, Wiznox Technologies is the best Mobile App Development Company. We Design and develop the most innovative apps with excellence and perfection for medium to large enterprises. We create apps that are easy to use, intuitive, and engaging—and we design them in a way

repair service said...

We offer the best event planning services in Chandigarh. Our experienced team of professionals will ensure that your special event is a success. We specialize in wedding planning, corporate events, birthday parties and more.


best event planner in chandigarh

event planner in chandigarh

Nick said...

Thanks for sharing such informative Blog.
Outdoor Media Advertising in Chennai

Digital Aacharya said...

Found your post interesting to read. Good Luck with the upcoming update. This article is really very interesting and effective. Visit our Best Digital Marketing Courses

Narendra Sharma said...

I really like your blog post, it was quite amazing and informative one, will recommend to others and keep posting more.
Parking Board ||
Advertisement Sunpack Sheet ||
Sunpack Sheet Printing ||

«Oldest ‹Older   401 – 485 of 485   Newer› Newest»