René's URL Explorer Experiment


Title: AA not kicking in with Gradle 4.1 and Gradle Android Plugin Version 3.0-alpha 5 · Issue #2024 · androidannotations/androidannotations · GitHub

Open Graph Title: AA not kicking in with Gradle 4.1 and Gradle Android Plugin Version 3.0-alpha 5 · Issue #2024 · androidannotations/androidannotations

X Title: AA not kicking in with Gradle 4.1 and Gradle Android Plugin Version 3.0-alpha 5 · Issue #2024 · androidannotations/androidannotations

Description: AndroidAnnotations version: 4.3.1 Android compile SDK version: 25 Annotated code: Several classes but AA is not generating anything at all. My build.gradle: buildscript { repositories { mavenCentral() mavenLocal() jcenter() } } apply plu...

Open Graph Description: AndroidAnnotations version: 4.3.1 Android compile SDK version: 25 Annotated code: Several classes but AA is not generating anything at all. My build.gradle: buildscript { repositories { mavenCentra...

X Description: AndroidAnnotations version: 4.3.1 Android compile SDK version: 25 Annotated code: Several classes but AA is not generating anything at all. My build.gradle: buildscript { repositories { mavenCentra...

Opengraph URL: https://github.com/androidannotations/androidannotations/issues/2024

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"AA not kicking in with Gradle 4.1 and Gradle Android Plugin Version 3.0-alpha 5","articleBody":"**AndroidAnnotations version**:\r\n\r\n4.3.1\r\n\r\n**Android compile SDK version**:\r\n\r\n25\r\n\r\n**Annotated code**:\r\nSeveral classes but AA is not generating anything at all.\r\n\r\nMy build.gradle:\r\n```\r\n\r\nbuildscript {\r\n    repositories {\r\n        mavenCentral()\r\n        mavenLocal()\r\n        jcenter()\r\n    }\r\n}\r\n\r\napply plugin: 'com.android.application'\r\n//apply plugin: 'com.neenbedankt.android-apt'\r\ndef AAVersion = '4.3.1'\r\ndef GooglePlayVersion = '11.0.2'\r\ndef AndroidSupportVersion = '25.4.0'\r\ndef CompileSdkVersion = 25\r\n\r\next.androidAnnotationsVersion = '4.3.1';\r\n\r\nconfigurations {\r\n    apt\r\n    implementation.exclude group: \"org.apache.httpcomponents\", module: \"httpclient\"\r\n}\r\n\r\n\r\nandroid {\r\n    dataBinding {\r\n        enabled=true\r\n    }\r\n\r\n    flavorDimensions \"production\", \"debug\"\r\n\r\n    signingConfigs {\r\n        release {\r\n            storeFile file(\"../AndroidKeyStore\")\r\n            storePassword \"xxx\"\r\n            keyAlias \"juergenwahlmann\"\r\n            keyPassword \"xxx\"\r\n            v2SigningEnabled false\r\n        }\r\n        debug {\r\n            storeFile file(\"../AndroidKeyStore\")\r\n            storePassword \"xxx\"\r\n            keyAlias \"juergenwahlmann\"\r\n            keyPassword \"xxx\"\r\n            v2SigningEnabled false\r\n        }\r\n    }\r\n    compileSdkVersion 25\r\n    buildToolsVersion '26.0.0'\r\n    defaultConfig {\r\n        applicationId 'de.kashban.android.picturecalendar'\r\n        minSdkVersion 19\r\n        targetSdkVersion 25\r\n        versionCode 317\r\n        versionName '3.1.7'\r\n        multiDexEnabled true\r\n\r\n        javaCompileOptions {\r\n            annotationProcessorOptions {\r\n                arguments = [\"logLevel\": \"TRACE\",\r\n                             \"logAppenderConsole\": \"true\",\r\n                             \"resourcePackageName\": android.defaultConfig.applicationId\r\n                             ]\r\n                //className 'org.androidannotations.androidannotations'\r\n            }\r\n        }\r\n        signingConfig signingConfigs.debug\r\n    }\r\n\r\n    useLibrary 'org.apache.http.legacy'\r\n\r\n    // AA: if you are going to use the spring rest template with AA\r\n    packagingOptions {\r\n        exclude 'META-INF/ASL2.0'\r\n        exclude 'META-INF/LICENSE'\r\n        exclude 'META-INF/license.txt'\r\n        exclude 'META-INF/NOTICE'\r\n        exclude 'META-INF/notice.txt'\r\n    }\r\n    productFlavors {\r\n        production {\r\n            applicationId = 'de.kashban.android.picturecalendar'\r\n            minSdkVersion 19\r\n            signingConfig signingConfigs.release\r\n            targetSdkVersion 25\r\n            dimension 'production'\r\n        }\r\n        development {\r\n            applicationId = 'de.kashban.android.picturecalendar'\r\n            minSdkVersion 19\r\n            signingConfig signingConfigs.debug\r\n            dimension 'debug'\r\n        }\r\n    }\r\n\r\n    buildTypes.debug {\r\n        minifyEnabled false\r\n        shrinkResources false\r\n        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'\r\n    }\r\n\r\n    buildTypes.release {\r\n        minifyEnabled true\r\n        shrinkResources true\r\n        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'\r\n    }\r\n\r\n    compileOptions {\r\n        sourceCompatibility JavaVersion.VERSION_1_8\r\n        targetCompatibility JavaVersion.VERSION_1_8\r\n    }\r\n}\r\n\r\ndependencies {\r\n    // AA imports (also enables REST support w AA)!!\r\n    implementation fileTree(include: ['*.jar'], dir: 'libs')\r\n    annotationProcessor \"org.androidannotations:androidannotations:$AAVersion\"\r\n    implementation \"org.androidannotations:androidannotations-api:$AAVersion\"\r\n    implementation 'com.google.http-client:google-http-client-jackson2:1.20.0'\r\n    implementation 'com.google.apis:google-api-services-drive:v2-rev171-1.20.0'\r\n    implementation \"com.google.android.gms:play-services-auth:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-identity:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-plus:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-base:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-analytics:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-drive:$GooglePlayVersion\"\r\n    implementation \"com.google.android.gms:play-services-ads:$GooglePlayVersion\"\r\n    implementation 'com.google.apis:google-api-services-analytics:v2.4-rev93-1.20.0'\r\n    implementation('com.google.api-client:google-api-client-android:1.18.0-rc') {\r\n        exclude group: 'xpp3'\r\n        exclude group: 'com.google.android.google-play-services'\r\n        exclude group: 'org.apache.httpcomponents'\r\n        exclude group: 'com.google.android'\r\n    }\r\n    implementation('com.google.http-client:google-http-client:1.18.0-rc') {\r\n        exclude group: 'xpp3'\r\n        exclude group: 'com.google.android.google-play-services'\r\n        exclude group: 'org.apache.httpcomponents'\r\n        exclude group: 'com.google.android'\r\n    }\r\n    implementation \"com.android.support:support-v4:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:support-v13:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:appcompat-v7:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:gridlayout-v7:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:cardview-v7:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:palette-v7:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:design:$AndroidSupportVersion\"\r\n    implementation \"com.android.support:recyclerview-v7:$AndroidSupportVersion\"\r\n    implementation 'com.android.support:multidex:1.0.1'\r\n    implementation 'com.patrickpissurno:ripple-effect:1.3.1'\r\n    implementation 'com.afollestad.material-dialogs:core:0.9.4.4'\r\n    implementation 'com.github.jrejaud:ViewPagerIndicator2:0.0.2'\r\n    implementation project(':pictureCalendarLibrary')\r\n    implementation project(':aFileChooser')\r\n    //implementation 'andhradroid.dev:aFilechooser:1.0.1'\r\n    implementation 'com.github.yukuku:ambilwarna:2.0.1'\r\n    implementation 'com.github.androidquery:androidquery:0.26.9'\r\n    implementation 'com.github.piruin:quickaction:2.3'\r\n    implementation 'com.github.jayschwa:AndroidSliderPreference:v1.0.0'\r\n    implementation 'com.daimajia.easing:library:2.0@aar'\r\n    implementation 'com.daimajia.androidanimations:library:2.2@aar'\r\n    implementation 'com.github.castorflex.smoothprogressbar:library:1.0.0'\r\n    implementation 'com.makeramen:roundedimageview:2.2.1'\r\n    implementation('com.mikepenz:aboutlibraries:5.9.6@aar') {\r\n        transitive = true\r\n    }\r\n    implementation 'com.github.nirhart:parallaxscroll:1.0'\r\n    implementation 'com.readystatesoftware.systembartint:systembartint:1.0.3'\r\n    implementation 'com.jayway.android.robotium:robotium-solo:5.6.3'\r\n    implementation 'uk.co.chrisjenx:calligraphy:2.2.0'\r\n    implementation 'com.dmitrymalkovich.android:material-design-dimens:1.4'\r\n}\r\n\r\ndef getSourceSetName(variant) {\r\n    return new File(variant.dirName).getName();\r\n}\r\n\r\nandroid.applicationVariants.all { variant -\u003e\r\n    def aptOutputDir = project.file(\"build/source/apt\")\r\n    def aptOutput = new File(aptOutputDir, variant.dirName)\r\n    println \"****************************\"\r\n    println \"variant: ${variant.name}\"\r\n    println \"manifest:  ${variant.outputs[0].processResources.manifestFile}\"\r\n    println \"aptOutput:  ${aptOutput}\"\r\n    println \"****************************\"\r\n\r\n    android.sourceSets[getSourceSetName(variant)].java.srcDirs+= aptOutput.getPath()\r\n\r\n    variant.javaCompiler.options.compilerArgs += [\r\n            '-processorpath', configurations.apt.getAsPath(),\r\n            '-AandroidManifestFile=' + variant.outputs[0].processResources.manifestFile,\r\n            '-s', aptOutput\r\n    ]\r\n\r\n    variant.javaCompiler.source = variant.javaCompiler.source.filter { p -\u003e\r\n        return !p.getPath().startsWith(aptOutputDir.getPath())\r\n    }\r\n\r\n    variant.javaCompiler.doFirst {\r\n        aptOutput.mkdirs()\r\n    }\r\n}\r\n```\r\n\r\n**Expected generated code**:\r\nGenerated Classes in class path\r\n\r\n**Actual generated code**:\r\nNothing\r\n\r\n**compiler.xml**\r\n```xml\r\n\u003c?xml version=\"1.0\" encoding=\"UTF-8\"?\u003e\r\n\u003cproject version=\"4\"\u003e\r\n  \u003ccomponent name=\"CompilerConfiguration\"\u003e\r\n    \u003cwildcardResourcePatterns\u003e\r\n      \u003centry name=\"!?*.java\" /\u003e\r\n      \u003centry name=\"!?*.form\" /\u003e\r\n      \u003centry name=\"!?*.class\" /\u003e\r\n      \u003centry name=\"!?*.groovy\" /\u003e\r\n      \u003centry name=\"!?*.scala\" /\u003e\r\n      \u003centry name=\"!?*.flex\" /\u003e\r\n      \u003centry name=\"!?*.kt\" /\u003e\r\n      \u003centry name=\"!?*.clj\" /\u003e\r\n    \u003c/wildcardResourcePatterns\u003e\r\n    \u003cannotationProcessing\u003e\r\n      \u003cprofile default=\"true\" name=\"Default\" enabled=\"true\" \u003e\r\n\t\t\u003cprocessorPath useClasspath=\"true\" /\u003e\r\n\t  \u003c/profile\u003e\r\n    \u003c/annotationProcessing\u003e\r\n  \u003c/component\u003e\r\n\u003c/project\u003e\r\n```\r\nI migrated from APT to Android Annotation Processor to make use of the newer Gradle build system. \r\n\r\nAs far as I can tell the Annotation Processor is not activated at all because I don't see any generated classes in my project. \r\n\r\nDatabinding Processing seems to work. If I set a className for the annotation processor in my build.gradle at least I get a message that it could not be found (because I don't know the exact class name for org.androidannotations). \r\n\r\nAny hints? ","author":{"url":"https://github.com/kashban","@type":"Person","name":"kashban"},"datePublished":"2017-07-09T07:19:09.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":17},"url":"https://github.com/2024/androidannotations/issues/2024"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:fd8dcb9a-4d83-904f-682a-70de24dc1e32
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE10C:3EF755:1D5DD6:292D55:6A62315F
html-safe-nonce1cb7204bdc6aca0e63424740bcaf30679db9073e17be4143940854f51daa9b18
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMTBDOjNFRjc1NToxRDVERDY6MjkyRDU1OjZBNjIzMTVGIiwidmlzaXRvcl9pZCI6IjQwNDYyODg0NTk0MTgxODYwODAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacdb6458343f038326b5fc437c10d9df5f25b4eea20a1ed7101a3b36f6f6afca42
hovercard-subject-tagissue:241506625
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/androidannotations/androidannotations/2024/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9d239dc2852a862d51aefefe9b8d0e8476654b69b878fb9b120b9ad5222bbb84/androidannotations/androidannotations/issues/2024
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9d239dc2852a862d51aefefe9b8d0e8476654b69b878fb9b120b9ad5222bbb84/androidannotations/androidannotations/issues/2024
og:image:altAndroidAnnotations version: 4.3.1 Android compile SDK version: 25 Annotated code: Several classes but AA is not generating anything at all. My build.gradle: buildscript { repositories { mavenCentra...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamekashban
hostnamegithub.com
expected-hostnamegithub.com
Nonef01037538d0c99e88fa8e01da1b1825ad354ff4da745198c7392a43592c8398c
turbo-cache-controlno-preview
go-importgithub.com/androidannotations/androidannotations git https://github.com/androidannotations/androidannotations.git
octolytics-dimension-user_id1315313
octolytics-dimension-user_loginandroidannotations
octolytics-dimension-repository_id3116751
octolytics-dimension-repository_nwoandroidannotations/androidannotations
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id3116751
octolytics-dimension-repository_network_root_nwoandroidannotations/androidannotations
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release10b5a8861bf21b66a650f894089f8ce1476c1d49
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/androidannotations/androidannotations/issues/2024#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fandroidannotations%2Fandroidannotations%2Fissues%2F2024
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
Code QualityEnforce quality at mergehttps://github.com/features/code-quality
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fandroidannotations%2Fandroidannotations%2Fissues%2F2024
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=androidannotations%2Fandroidannotations
Reloadhttps://github.com/androidannotations/androidannotations/issues/2024
Reloadhttps://github.com/androidannotations/androidannotations/issues/2024
Reloadhttps://github.com/androidannotations/androidannotations/issues/2024
Please reload this pagehttps://github.com/androidannotations/androidannotations/issues/2024
androidannotations https://github.com/androidannotations
androidannotationshttps://github.com/androidannotations/androidannotations
Notifications https://github.com/login?return_to=%2Fandroidannotations%2Fandroidannotations
Fork 2.3k https://github.com/login?return_to=%2Fandroidannotations%2Fandroidannotations
Star 11k https://github.com/login?return_to=%2Fandroidannotations%2Fandroidannotations
Code https://github.com/androidannotations/androidannotations
Issues 50 https://github.com/androidannotations/androidannotations/issues
Pull requests 0 https://github.com/androidannotations/androidannotations/pulls
Actions https://github.com/androidannotations/androidannotations/actions
Wiki https://github.com/androidannotations/androidannotations/wiki
Security and quality 0 https://github.com/androidannotations/androidannotations/security
Insights https://github.com/androidannotations/androidannotations/pulse
Code https://github.com/androidannotations/androidannotations
Issues https://github.com/androidannotations/androidannotations/issues
Pull requests https://github.com/androidannotations/androidannotations/pulls
Actions https://github.com/androidannotations/androidannotations/actions
Wiki https://github.com/androidannotations/androidannotations/wiki
Security and quality https://github.com/androidannotations/androidannotations/security
Insights https://github.com/androidannotations/androidannotations/pulse
AA not kicking in with Gradle 4.1 and Gradle Android Plugin Version 3.0-alpha 5https://github.com/androidannotations/androidannotations/issues/2024#top
https://github.com/kashban
kashbanhttps://github.com/kashban
on Jul 9, 2017https://github.com/androidannotations/androidannotations/issues/2024#issue-241506625
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.