Aditay Kaushal
Aditay Kaushal

Reputation: 1091

Android Studio add jar library error

I have follow the instruction to add jar library but when i am going to synchronize the build grade then getting error.

Could not find property 'file' on org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@1a9bd9bb.

I am not getting what is error. please suggest.

build gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 22
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.example.cws.myapplication"
        minSdkVersion 11
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        applicationVariants.all { variant ->
            variant.outputs.each { output ->
                output.outputFile =  new File(file.parent, file.name.replace(".apk", "-" + defaultConfig.versionName + ".apk"));
            }
        }
    }
    sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/layout'] } }
}

def var = dependencies {

    compile 'com.android.support:appcompat-v7:22.0.0'
     compile file  'libs/library-2.1.1.jar'
}

Upvotes: 0

Views: 89

Answers (1)

Sachin Kottary
Sachin Kottary

Reputation: 189

In Build.Gradle file the code to add the library is compile files('libs/acra-4.6.0RC1.jar')

The letter 's' in 'files' is missing from the command.

Upvotes: 2

Related Questions