This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
android { | |
applicationVariants.all { variant -> | |
def apk | |
def deployPath | |
variant.outputs.each { output -> | |
if (output.outputFile?.name?.contains('release')) { | |
apk = output.outputFile | |
} | |
} | |
if (variant.getBuildType().isMinifyEnabled()) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
007.waw.pl | |
00872.pl | |
00s.pl | |
01189998819991197253.pl | |
01studio.com.pl | |
0dt.pl | |
0jakszybkoschudnac.pl | |
0jj.pl | |
0k0.pl | |
0w0.pl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Plugin(name = "CloudAppender", category = "Core", printObject = false) | |
public class CloudAppender extends AbstractAppender { | |
private final LoggingOptions loggingOptions; | |
private final List<LoggingEnhancer> enhancers; | |
private volatile Logging logging; | |
protected CloudAppender(String name, | |
Filter filter, | |
Layout<? extends Serializable> layout, | |
LoggingOptions options) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ApiNetworkInterceptor implements Interceptor { | |
@Override | |
public Response intercept(Chain chain) throws IOException { | |
if (chain.request().url().host().equals("graph.facebook.com")) { | |
final Response response = chain.proceed(chain.request()); | |
final int code = response.code(); | |
if(code==200){ | |
response.header("content-disposition","inline"); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const INTENT_NEWIDCARD_OPTIONS = 'NewIdCard - yes - option'; | |
app.intent(INTENT_NEWIDCARD_OPTIONS, (conv, input, selectedOption) => { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const admin = require('firebase-admin'); | |
admin.initializeApp({ | |
projectId: "XXXXXX" | |
} | |
); | |
const db = admin.firestore(); | |
async function buildItemsCarousel() { | |
let carouselItems = {}; |