依赖路径修改 #8

Merged
p2u3zeg8r merged 1 commits from jxl into main 8 months ago

@ -4,6 +4,14 @@
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
<DropdownSelection timestamp="2025-06-11T10:41:01.007544700Z">
<Target type="DEFAULT_BOOT">
<handle>
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\86180\.android\avd\Pixel_8.avd" />
</handle>
</Target>
</DropdownSelection>
<DialogSelection />
</SelectionState>
</selectionStates>
</component>

@ -43,11 +43,10 @@ dependencies {
implementation(libs.activity)
implementation(libs.constraintlayout)
implementation(fileTree(mapOf(
"dir" to "D:\\\\ruanjiangongchengshiyan111gyl\\\\threezgl\\\\httpcomponents-client-4.5.14-bin\\\\lib",
"include" to listOf("*.aar", "*.jar"),
"exclude" to listOf("commons-codec-1.11.jar","httpclient-4.5.14.jar","httpclient-cache-4.5.14.jar",
"fluent-hc-4.5.14.jar","httpmime-4.5.14.jar")
"dir" to "..\\httpcomponents-client-4.5.14-bin\\lib",
"include" to listOf("*.aar", "*.jar"),
"exclude" to listOf("commons-codec-1.11.jar","httpclient-4.5.14.jar","httpclient-cache-4.5.14.jar",
"fluent-hc-4.5.14.jar","httpmime-4.5.14.jar")
)))
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)

@ -81,7 +81,8 @@ public class NotesPreferenceActivity extends PreferenceActivity {
mReceiver = new GTaskReceiver();
IntentFilter filter = new IntentFilter();
filter.addAction(GTaskSyncService.GTASK_SERVICE_BROADCAST_NAME);
registerReceiver(mReceiver, filter);
registerReceiver(mReceiver, filter, Context.RECEIVER_NOT_EXPORTED);
mOriAccounts = null;
View header = LayoutInflater.from(this).inflate(R.layout.settings_header, null);

Loading…
Cancel
Save