CrepeCake icon indicating copy to clipboard operation
CrepeCake copied to clipboard

I add the @aspect notation to aspectclasss no compile

Open Qleoz12 opened this issue 5 years ago • 0 comments

Captssura @Aspect(MainActivity.class) my proyect no compile, this is my gradle project `// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript { repositories { google() jcenter()

}
dependencies {
    classpath 'com.android.tools.build:gradle:3.3.1'
    classpath 'net.idik.crepecake:plugin:0.0.4' // Add Here
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}

}

allprojects { repositories { google() jcenter()

}

}

task clean(type: Delete) { delete rootProject.buildDir }`

gradle module `apply plugin: 'com.android.application' apply plugin: 'net.idik.crepecake' android { compileSdkVersion 29 buildToolsVersion "29.0.0" defaultConfig { applicationId "com.planensas.myapplication" minSdkVersion 15 targetSdkVersion 29 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } }

dependencies { //versions def roomVersion = '2.1.0-alpha06' def archLifecycleVersion = '2.0.0' def lifecycle_version = "2.0.0"

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.0.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'

implementation 'com.google.android.material:material:1.1.0-alpha04'
implementation 'com.android.support:appcompat-v7:29.0.0'
implementation 'com.android.support:design:29.0.0'
implementation 'com.android.support:cardview-v7:29.0.0'
// ViewModel and LiveData
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
// Room components
implementation "androidx.room:room-runtime:$roomVersion"
annotationProcessor "androidx.room:room-compiler:$roomVersion"
androidTestImplementation "androidx.room:room-testing:$roomVersion"
// Lifecycle components
implementation "androidx.lifecycle:lifecycle-extensions:$archLifecycleVersion"
annotationProcessor "androidx.lifecycle:lifecycle-compiler:$archLifecycleVersion"

// retrofit
implementation 'com.squareup.retrofit2:retrofit:2.1.0'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
//

//test
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4'

}`

Qleoz12 avatar Jun 22 '19 03:06 Qleoz12