baldapps

Results 6 issues of baldapps

The library is using api 27 as target and it includes support library 27, so if you try to use a project with api 28, gradle complains that you are...

The code still uses a deprecated intent. What is the new alternative to check if there is space to download the library?

There's a conflict between actions-on-google 1.3.0 and Firebase Admin SDK 6.9.0. When you try to use both packages in a pom.xml you receive errors for conflicts about several packages. It...

Consider a very simple project with a CMakeLists.txt file: cmake_minimum_required(VERSION 2.8) set(MY_VERSION 01.00) set(MY_MINOR_VERSION 1) set(MY_COMP ${MY_VERSION}-${MY_MINOR_VERSION}) cmake_policy(SET CMP0048 NEW) project(FOO CXX) add_executable(FOO main.cpp) add_definitions(-DFOO_VERSION="${MY_COMP}") In the compile_commands.json I see...

not a bug here

``` class Test { template T&& foo(T&& lhs) { return std::forward(lhs); } }; ``` Access to foo doesn't work.