Skip to content
This repository has been archived by the owner on Oct 6, 2024. It is now read-only.

Commit

Permalink
License ownership from Norman Breau -> Breautek
Browse files Browse the repository at this point in the history
  • Loading branch information
breautek committed Oct 22, 2023
1 parent 7a33374 commit 9887531
Show file tree
Hide file tree
Showing 35 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2023 Norman Breau
Copyright 2023 Breautek

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# Copyright 2023 Norman Breau
# Copyright 2023 Breautek

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import com.android.build.api.dsl.ManagedVirtualDevice

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseAPIPacket.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseAPIResponse.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseAPIRouter.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseActivity.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions fuse/src/main/java/com/breautek/fuse/FuseContext.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -154,7 +154,7 @@ public WebResourceResponse shouldInterceptRequest(WebView view, WebResourceReque
settings.setJavaScriptEnabled(true);
settings.setDomStorageEnabled(true);
$webview.setWebChromeClient(new WebChromeClient());
$webview.addJavascriptInterface(this, "NBSNative");
$webview.addJavascriptInterface(this, "BTFuseNative");
$webview.loadUrl("https://localhost/assets/index.html");
}

Expand Down Expand Up @@ -294,13 +294,13 @@ public void log(int level, String message) {

public void execCallback(String callbackID, String payload) {
$mainThread.post(() -> {
$webview.evaluateJavascript(String.format("window.__nbsfuse_doCallback(\"%s\",\"%s\");", callbackID, payload.replace("\"", "\\\"")), null);
$webview.evaluateJavascript(String.format("window.__btfuse_doCallback(\"%s\",\"%s\");", callbackID, payload.replace("\"", "\\\"")), null);
});
}

public void execCallback(String callbackID) {
$mainThread.post(() -> {
$webview.evaluateJavascript(String.format("window.__nbsfuse_doCallback(\"%s\");", callbackID), null);
$webview.evaluateJavascript(String.format("window.__btfuse_doCallback(\"%s\");", callbackID), null);
});
}

Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseError.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseLogger.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FuseLoggerLevel.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/FusePlugin.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion fuse/src/main/java/com/breautek/fuse/PermissionStatus.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ public class ExampleInstrumentedTest {
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("ca.nbsolutions.fuse.test.test", appContext.getPackageName());
assertEquals("com.breautek.fuse.test.test", appContext.getPackageName());
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion makeRelease.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# Copyright 2023 Norman Breau
# Copyright 2023 Breautek

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Norman Breau
Copyright 2023 Breautek
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion syncGradle.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# Copyright 2023 Norman Breau
# Copyright 2023 Breautek

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# Copyright 2023 Norman Breau
# Copyright 2023 Breautek

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion testplugins/EchoPlugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

android {
namespace 'ca.nbsolutions.fuse.plugins'
namespace 'com.breautek.fuse.plugins'
compileSdk 34

aaptOptions {
Expand Down

0 comments on commit 9887531

Please sign in to comment.