Skip to content

Commit 83ea410

Browse files
committed
review comments, tweaks to resource attributes for compatibility with ingest
1 parent f2f4b52 commit 83ea410

File tree

29 files changed

+101
-65
lines changed

29 files changed

+101
-65
lines changed

e2e/android/app/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/build
1+
/build

e2e/android/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ dependencies {
6363
androidTestImplementation(libs.androidx.ui.test.junit4)
6464
debugImplementation(libs.androidx.ui.tooling)
6565
debugImplementation(libs.androidx.ui.test.manifest)
66-
}
66+
}

e2e/android/app/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
# If you keep the line number information, uncomment this to
2020
# hide the original source file name.
21-
#-renamesourcefileattribute SourceFile
21+
#-renamesourcefileattribute SourceFile

e2e/android/app/src/androidTest/java/com/example/androidobservability/ExampleInstrumentedTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ class ExampleInstrumentedTest {
2121
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
2222
assertEquals("com.example.androidobservability", appContext.packageName)
2323
}
24-
}
24+
}

e2e/android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
</activity>
2828
</application>
2929

30-
</manifest>
30+
</manifest>

e2e/android/app/src/main/java/com/example/androidobservability/BaseApplication.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import java.util.Collections
1313
class BaseApplication : Application() {
1414

1515
companion object {
16+
// TODO O11Y-376: Update this credential to be driven by env variable or gradle property
1617
// Set LAUNCHDARKLY_MOBILE_KEY to your LaunchDarkly SDK mobile key.
1718
const val LAUNCHDARKLY_MOBILE_KEY = "MOBILE_KEY_GOES_HERE"
1819
}
@@ -39,4 +40,4 @@ class BaseApplication : Application() {
3940

4041
LDClient.init(this@BaseApplication, ldConfig, context)
4142
}
42-
}
43+
}

e2e/android/app/src/main/java/com/example/androidobservability/MainActivity.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ import androidx.compose.material3.Text
1414
import androidx.compose.runtime.Composable
1515
import androidx.compose.ui.Modifier
1616
import androidx.compose.ui.tooling.preview.Preview
17-
import androidx.lifecycle.Lifecycle
18-
import androidx.lifecycle.lifecycleScope
19-
import androidx.lifecycle.repeatOnLifecycle
2017
import com.example.androidobservability.ui.theme.AndroidObservabilityTheme
21-
import kotlinx.coroutines.launch
2218

2319
class MainActivity : ComponentActivity() {
2420
override fun onCreate(savedInstanceState: Bundle?) {
@@ -75,4 +71,4 @@ fun GreetingPreview() {
7571
AndroidObservabilityTheme {
7672
Greeting("Android")
7773
}
78-
}
74+
}

e2e/android/app/src/main/java/com/example/androidobservability/ViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ class ViewModel : ViewModel() {
2525
Attributes.of(AttributeKey.stringKey("FakeAttribute"), "FakeVal")
2626
)
2727
}
28-
}
28+
}

e2e/android/app/src/main/java/com/example/androidobservability/ui/theme/Color.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ val Pink80 = Color(0xFFEFB8C8)
88

99
val Purple40 = Color(0xFF6650a4)
1010
val PurpleGrey40 = Color(0xFF625b71)
11-
val Pink40 = Color(0xFF7D5260)
11+
val Pink40 = Color(0xFF7D5260)

e2e/android/app/src/main/java/com/example/androidobservability/ui/theme/Theme.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,4 +55,4 @@ fun AndroidObservabilityTheme(
5555
typography = Typography,
5656
content = content
5757
)
58-
}
58+
}

0 commit comments

Comments
 (0)