uai
This commit is contained in:
		| @@ -20,7 +20,7 @@ | ||||
|     <DebugType>full</DebugType> | ||||
|     <Optimize>False</Optimize> | ||||
|     <OutputPath>bin\Debug</OutputPath> | ||||
|     <DefineConstants>DEBUG;EXCLUDE_TWOFISH;INCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;INCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <DefineConstants>DEBUG;EXCLUDE_TWOFISH;EXCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <ErrorReport>prompt</ErrorReport> | ||||
|     <WarningLevel>4</WarningLevel> | ||||
|     <ConsolePause>False</ConsolePause> | ||||
|   | ||||
| @@ -20,7 +20,7 @@ | ||||
|     <DebugType>full</DebugType> | ||||
|     <Optimize>false</Optimize> | ||||
|     <OutputPath>bin\Debug\</OutputPath> | ||||
|     <DefineConstants>TRACE;DEBUG;EXCLUDE_TWOFISH;INCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;INCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <DefineConstants>TRACE;DEBUG;EXCLUDE_TWOFISH;EXCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <ErrorReport>prompt</ErrorReport> | ||||
|     <WarningLevel>4</WarningLevel> | ||||
|   </PropertyGroup> | ||||
| @@ -55,7 +55,6 @@ | ||||
|     <Compile Include="database\CheckDatabaseForChanges.cs" /> | ||||
|     <Compile Include="database\edit\EditGroup.cs" /> | ||||
|     <Compile Include="database\edit\MoveElement.cs" /> | ||||
|     <Compile Include="database\DatabaseV1.cs" /> | ||||
|     <Compile Include="database\KdbDatabaseLoader.cs" /> | ||||
|     <Compile Include="database\KdbxDatabaseLoader.cs" /> | ||||
|     <Compile Include="database\SynchronizeCachedDatabase.cs" /> | ||||
| @@ -112,10 +111,6 @@ | ||||
|     <Compile Include="Utils\Spr\SprEngine.PickChars.cs" /> | ||||
|   </ItemGroup> | ||||
|   <ItemGroup> | ||||
|     <ProjectReference Include="..\JavaFileStorageBindings\JavaFileStorageBindings.csproj"> | ||||
|       <Project>{48574278-4779-4b3a-a9e4-9cf1bc285d0b}</Project> | ||||
|       <Name>JavaFileStorageBindings</Name> | ||||
|     </ProjectReference> | ||||
|     <ProjectReference Include="..\KeePassLib2Android\KeePassLib2Android.csproj"> | ||||
|       <Project>{545b4a6b-8bba-4fbe-92fc-4ac060122a54}</Project> | ||||
|       <Name>KeePassLib2Android</Name> | ||||
|   | ||||
| @@ -45,4 +45,5 @@ | ||||
| 	<uses-permission android:name="android.permission.VIBRATE" /> | ||||
| 	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||||
| 	<uses-permission android:name="android.permission.INTERNET" /> | ||||
| 	<uses-permission android:name="android.permission.nfc" /> | ||||
| </manifest> | ||||
| @@ -29,29 +29,7 @@ | ||||
| 				<category android:name="android.intent.category.OPENABLE" /> | ||||
| 			</intent-filter> | ||||
| 		</activity> | ||||
| 		<service android:name="keepass2android.softkeyboard.KP2AKeyboard" android:permission="android.permission.BIND_INPUT_METHOD"> | ||||
| 			<intent-filter> | ||||
| 				<action android:name="android.view.InputMethod" /> | ||||
| 			</intent-filter> | ||||
| 			<meta-data android:name="android.view.im" android:resource="@xml/method" /> | ||||
| 		</service> | ||||
| 		<activity android:name="keepass2android.softkeyboard.LatinIMESettings" android:label="@string/english_ime_settings"> | ||||
| 			<intent-filter> | ||||
| 				<action android:name="android.intent.action.MAIN" /> | ||||
| 			</intent-filter> | ||||
| 			<intent-filter> | ||||
| 				<action android:name="keepass2android.softkeyboard.LatinIMESettings" /> | ||||
| 				<category android:name="android.intent.category.DEFAULT" /> | ||||
| 			</intent-filter> | ||||
| 		</activity> | ||||
| 		 <activity android:name="keepass2android.softkeyboard.InputLanguageSelection" | ||||
|                 android:label="@string/language_selection_title"> | ||||
|             <intent-filter> | ||||
|                 <action android:name="android.intent.action.MAIN"/> | ||||
|                 <action android:name="keepass2android.softkeyboard.INPUT_LANGUAGE_SELECTION"/> | ||||
|                 <category android:name="android.intent.category.DEFAULT" /> | ||||
|             </intent-filter> | ||||
|         </activity> | ||||
| 		 | ||||
|   | ||||
| 		<activity android:configChanges="keyboardHidden|orientation" android:label="@string/app_name" android:theme="@style/Base" android:name="keepass2android.PasswordActivity"> | ||||
| 			<intent-filter android:label="@string/app_name"> | ||||
|   | ||||
| @@ -47,19 +47,7 @@ | ||||
| 			    <data android:pathPattern=".*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\..*\\.kdbx" /> | ||||
| 		  </intent-filter> | ||||
| 		</activity> | ||||
| 		<service android:name="keepass2android.softkeyboard.KP2AKeyboard" | ||||
|                 android:permission="android.permission.BIND_INPUT_METHOD"> | ||||
|             <intent-filter> | ||||
|                 <action android:name="android.view.InputMethod" /> | ||||
|             </intent-filter> | ||||
|             <meta-data android:name="android.view.im" android:resource="@xml/method" /> | ||||
|         </service> | ||||
| 		<activity android:name="keepass2android.softkeyboard.LatinIMESettings" android:label="@string/english_ime_settings"> | ||||
|             <intent-filter> | ||||
|                 <action android:name="android.intent.action.MAIN"/> | ||||
|             </intent-filter> | ||||
|         </activity> | ||||
|  | ||||
| 		 | ||||
| 	</application> | ||||
| 	<uses-permission android:name="android.permission.VIBRATE" /> | ||||
| 	<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||||
|   | ||||
							
								
								
									
										6920
									
								
								src/keepass2android/Resources/Resource.designer.cs
									
									
									
										generated
									
									
									
								
							
							
						
						
									
										6920
									
								
								src/keepass2android/Resources/Resource.designer.cs
									
									
									
										generated
									
									
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @@ -30,7 +30,7 @@ | ||||
|     <DebugType>full</DebugType> | ||||
|     <Optimize>false</Optimize> | ||||
|     <OutputPath>bin\Debug</OutputPath> | ||||
|     <DefineConstants>DEBUG;EXCLUDE_TWOFISH;INCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;INCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <DefineConstants>DEBUG;EXCLUDE_TWOFISH;EXCLUDE_KEYBOARD;EXCLUDE_FILECHOOSER;EXCLUDE_JAVAFILESTORAGE;EXCLUDE_KEYTRANSFORM</DefineConstants> | ||||
|     <ErrorReport>prompt</ErrorReport> | ||||
|     <WarningLevel>4</WarningLevel> | ||||
|     <ConsolePause>False</ConsolePause> | ||||
| @@ -85,9 +85,6 @@ | ||||
|     <Reference Include="System.Core" /> | ||||
|     <Reference Include="Mono.Android" /> | ||||
|     <Reference Include="Mono.Android.Support.v4" /> | ||||
|     <Reference Include="GooglePlayServicesFroyoLib"> | ||||
|       <HintPath>..\Components\googleplayservicesfroyo-9.0\lib\android\GooglePlayServicesFroyoLib.dll</HintPath> | ||||
|     </Reference> | ||||
|   </ItemGroup> | ||||
|   <ItemGroup> | ||||
|     <Compile Include="addons\OtpKeyProv\EncodingUtil.cs" /> | ||||
| @@ -173,6 +170,9 @@ | ||||
|     <Compile Include="AttachmentContentProvider.cs" /> | ||||
|     <Compile Include="app\AppTask.cs" /> | ||||
|     <Compile Include="views\TextWithHelp.cs" /> | ||||
|     <Compile Include="addons\KeeChallenge\KeeChallenge.cs" /> | ||||
|     <Compile Include="NfcChalActivity.cs" /> | ||||
|     <Compile Include="addons\KeeChallenge\ChallengeInfo.cs" /> | ||||
|   </ItemGroup> | ||||
|   <ItemGroup> | ||||
|     <AndroidResource Include="Resources\xml\searchable.xml" /> | ||||
| @@ -256,6 +256,10 @@ | ||||
|     <None Include="Resources\layout-v14\entry_view_contents.xml"> | ||||
|       <Visible>False</Visible> | ||||
|     </None> | ||||
|     <None Include="Properties\AndroidManifest_light.xml" /> | ||||
|     <AndroidResource Include="Resources\drawable-hdpi\ic_action_search_holodark.png" /> | ||||
|     <AndroidResource Include="Resources\drawable-v11\old_ic_launcher_gray.png" /> | ||||
|     <AndroidResource Include="Resources\layout\sftp_credentials.axml" /> | ||||
|   </ItemGroup> | ||||
|   <ItemGroup> | ||||
|     <AndroidResource Include="Resources\drawable\ic00.png" /> | ||||
| @@ -670,10 +674,6 @@ | ||||
|       <Project>{23233a28-d74f-4bf8-b4d8-834060840bd7}</Project> | ||||
|       <Name>AppCompatV7Binding</Name> | ||||
|     </ProjectReference> | ||||
|     <ProjectReference Include="..\JavaFileStorageBindings\JavaFileStorageBindings.csproj"> | ||||
|       <Project>{48574278-4779-4b3a-a9e4-9cf1bc285d0b}</Project> | ||||
|       <Name>JavaFileStorageBindings</Name> | ||||
|     </ProjectReference> | ||||
|     <ProjectReference Include="..\KeePassLib2Android\KeePassLib2Android.csproj"> | ||||
|       <Project>{545B4A6B-8BBA-4FBE-92FC-4AC060122A54}</Project> | ||||
|       <Name>KeePassLib2Android</Name> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Philipp Crocoll
					Philipp Crocoll