This file contains hidden or 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
| /** | |
| * Copyright (C) 2017 Drew Hannay | |
| * <p> | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * <p> | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * <p> | |
| * Unless required by applicable law or agreed to in writing, software |
This file contains hidden or 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
| import android.os.Build | |
| import android.view.View | |
| import io.github.inflationx.viewpump.InflateResult | |
| import io.github.inflationx.viewpump.Interceptor | |
| import javax.inject.Inject | |
| class AutofillKillerInterceptor : Interceptor { | |
| override fun intercept(chain: Interceptor.Chain): InflateResult { | |
| if (Build.VERSION.SDK_INT < Build.VERSION_CODES.O) { |
This file contains hidden or 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
| FROM ubuntu:16.04 | |
| MAINTAINER Jonathan Underwood | |
| # set env vars for linux user and keybase user | |
| ENV LINUX_USER="kbuser" \ | |
| KEYBASE_USER="youruser" | |
| # use curl to grab the latest build from keybase.io | |
| RUN apt update && apt install -y \ | |
| curl |
OlderNewer