Rajesh Durai
Rajesh Durai

Reputation: 11

Android Gradle Project

I got the following error while run the gradle build.I think i missed some where in build.gradle,

Thanks in advance.

Upvotes: 1

Views: 40

Answers (1)

Blehi
Blehi

Reputation: 2020

Create an AndroidManifest.xml file in your "main" folder. It is missing. An example can be :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.android.something" >

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">

        <!-- Define your activities and other stuffs here. -->
    </application>

</manifest>

Upvotes: 1

Related Questions