Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • B buck
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 201
    • Issues 201
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 22
    • Merge requests 22
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • buck
  • Issues
  • #2228
Closed
Open
Issue created Apr 03, 2019 by Administrator@rootContributor

Buck doesn't generate Manifest files when modules are being built

Created by: kirillzh

We are getting "current min is 1" in IJ for certain Android APIs in Android modules even though our min SDK is set properly (through okbuck + gradle). Here's BUCK config:

okbuck_manifest(
    name = 'manifest_lib_debug',
    main_manifest = 'src/main/AndroidManifest.xml',
    min_sdk = '21',
    target_sdk = '26',
    package = 'com.squareup.common.tutorial',
    version_code = '1',
    version_name = '1.0',
    debuggable = True,
)

We are currently on OkBuck 0.47.1 and Buck f8a27c9137515046c02b1b444732f5eae270b6b9.

Example of warning: Screen Shot 2019-04-02 at 8 33 41 PM

Running ./buckw project --skip-build nor building the module ./buckw build //common/tutorial:src_debug solves the problem. However, manually running manifest_lib_debug target does. Anyway to solve that problem when the module is being built, at very least?

Thank you.

Assignee
Assign to
Time tracking