-
Notifications
You must be signed in to change notification settings - Fork 218
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
simplexatg
committed
May 30, 2022
1 parent
6c0b475
commit 771de7c
Showing
1,348 changed files
with
37,773 additions
and
35,682 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
apply plugin: 'com.android.library' | ||
apply from: "../../shared.gradle" | ||
|
||
dependencies { | ||
implementation project(':brailleinterfaces') | ||
} |
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,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
package="com.google.android.accessibility.braille.brailledisplay" /> |
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
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,6 @@ | ||
apply plugin: 'com.android.library' | ||
apply from: "../../shared.gradle" | ||
|
||
dependencies { | ||
implementation project(':braillecommon') | ||
} |
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,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.google.android.accessibility.braille.brailledisplay.analytics"> | ||
</manifest> |
28 changes: 28 additions & 0 deletions
28
...oogle/android/accessibility/braille/brailledisplay/analytics/BrailleDisplayAnalytics.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,28 @@ | ||
package com.google.android.accessibility.braille.brailledisplay.analytics; | ||
|
||
import android.content.Context; | ||
import com.google.android.accessibility.braille.common.translate.BrailleLanguages.Code; | ||
|
||
/** Stub braille display analytics. */ | ||
public class BrailleDisplayAnalytics { | ||
private static BrailleDisplayAnalytics instance; | ||
|
||
public static BrailleDisplayAnalytics getInstance(Context context) { | ||
if (instance == null) { | ||
instance = new BrailleDisplayAnalytics(context.getApplicationContext()); | ||
} | ||
return instance; | ||
} | ||
|
||
private BrailleDisplayAnalytics(Context context) {} | ||
|
||
public void logStartedEvent(String device, Code code, boolean wordWrappingEnabled) {} | ||
|
||
public void logTypingBrailleCharacter(int count) {} | ||
|
||
public void logReadingBrailleCharacter(int count) {} | ||
|
||
public void logBrailleCodeSetting(Code code) {} | ||
|
||
public void logWordWrappingSetting(boolean enabled) {} | ||
} |
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,10 @@ | ||
apply plugin: 'com.android.library' | ||
apply from: "../../shared.gradle" | ||
|
||
dependencies { | ||
implementation project(':utils') | ||
implementation project(':braillecommon') | ||
implementation project(':brailleinterfaces') | ||
implementation project(':brailleimeanalytics') | ||
implementation project(':brailletranslate') | ||
} |
File renamed without changes.
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
Oops, something went wrong.