-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from cagnulein/patching_libadb_for_mdsn
Patching libadb for mdsn
- Loading branch information
Showing
23 changed files
with
4,018 additions
and
8 deletions.
There are no files selected for viewing
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
516 changes: 516 additions & 0 deletions
516
app/src/main/java/io/github/muntashirakon/adb/AbsAdbConnectionManager.java
Large diffs are not rendered by default.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
app/src/main/java/io/github/muntashirakon/adb/AdbAuthenticationFailedException.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause AND (GPL-3.0-or-later OR Apache-2.0) | ||
|
||
package io.github.muntashirakon.adb; | ||
|
||
/** | ||
* Thrown when the ADB daemon rejects our initial authentication attempt, which typically means that the peer has not | ||
* previously saved our public key. | ||
*/ | ||
// Copyright 2020 Sam Palmer | ||
public class AdbAuthenticationFailedException extends RuntimeException { | ||
public AdbAuthenticationFailedException() { | ||
super("Initial authentication attempt rejected by peer."); | ||
} | ||
} |
Oops, something went wrong.