-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add comments and pending classes, features
- Loading branch information
1 parent
a4ee842
commit cf0791b
Showing
10 changed files
with
58 additions
and
20 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 |
---|---|---|
|
@@ -152,4 +152,7 @@ build/ | |
gradle-app.setting | ||
|
||
# Jacoco | ||
/posthog/jacoco.exec | ||
/posthog/jacoco.exec | ||
|
||
# eclipse | ||
.project/ |
6 changes: 6 additions & 0 deletions
6
...og-android/src/main/java/com/posthog/android/internal/PostHogActivityLifecycleCallback.kt
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 @@ | ||
package com.posthog.android.internal | ||
|
||
// ActivityLifecycleCallbacks, IntegrationOperation, PostHogActivityLifecycleCallbacks | ||
internal class PostHogActivityLifecycleCallback { | ||
// TODO: lifecycle events, deeplinks, record screen views | ||
} |
5 changes: 5 additions & 0 deletions
5
.../posthog-android/src/main/java/com/posthog/android/internal/PostHogAdvertisingIdReader.kt
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,5 @@ | ||
package com.posthog.android.internal | ||
|
||
// GetAdvertisingIdTask | ||
class PostHogAdvertisingIdReader { | ||
} |
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
21 changes: 21 additions & 0 deletions
21
posthog-v3/posthog/src/main/java/com/posthog/PostHogEncryption.kt
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,21 @@ | ||
package com.posthog | ||
|
||
import java.io.InputStream | ||
import java.io.OutputStream | ||
|
||
public abstract class PostHogEncryption { | ||
public abstract fun decrypt(inputStream: InputStream): InputStream | ||
|
||
public abstract fun encrypt(outputStream: OutputStream): OutputStream | ||
|
||
internal class PostHogEncryptionNone : PostHogEncryption() { | ||
override fun decrypt(inputStream: InputStream): InputStream { | ||
return inputStream | ||
} | ||
|
||
override fun encrypt(outputStream: OutputStream): OutputStream { | ||
return outputStream | ||
} | ||
|
||
} | ||
} |
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
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